:root {
  --nt-navy: #0b1f3a;
  --nt-navy-2: #12365f;
  --nt-orange: #f97316;
  --nt-orange-dark: #df5d08;
  --nt-text: #111827;
  --nt-muted: #64748b;
  --nt-line: #e5e7eb;
  --nt-soft: #f5f7fb;
  --nt-ink: #071426;
  --nt-white: #ffffff;
  --nt-radius: 8px;
  --nt-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--nt-text);
  background: var(--nt-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
}

.nt-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

.nt-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

.nt-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.nt-logo-img {
  display: block;
  width: 238px;
  max-width: 32vw;
  height: auto;
}

.nt-nav {
  flex: 1;
}

.nt-menu,
.nt-footer-menu {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nt-menu a {
  position: relative;
  color: #24324a;
  font-size: 15px;
  font-weight: 650;
}

.nt-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--nt-orange);
  transition: right 0.18s ease;
}

.nt-menu a:hover::after {
  right: 0;
}

.nt-menu a:hover,
.nt-section-head a:hover,
.nt-footer a:hover {
  color: var(--nt-orange);
}

.nt-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nt-header-actions .woocommerce-product-search {
  display: flex;
  align-items: center;
  gap: 0;
  width: 250px;
  border: 1px solid var(--nt-line);
  border-radius: 999px;
  overflow: hidden;
  background: #f8fafc;
}

.nt-header-actions .search-field {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 11px 14px;
  font-size: 14px;
  outline: none;
}

.nt-header-actions .woocommerce-product-search button {
  border: 0;
  background: var(--nt-navy);
  color: var(--nt-white);
  padding: 11px 14px;
  font-weight: 700;
  cursor: pointer;
}

.nt-icon-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--nt-line);
  border-radius: 999px;
  background: var(--nt-white);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  color: var(--nt-navy);
}

.nt-icon-link svg {
  width: 22px;
  height: 22px;
}

.nt-cart-count {
  position: absolute;
  top: -5px;
  right: -4px;
  display: inline-grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--nt-white);
  background: var(--nt-orange);
  font-size: 12px;
  font-weight: 800;
}

.nt-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--nt-line);
  border-radius: 8px;
  background: var(--nt-white);
  color: var(--nt-navy);
  font-size: 22px;
}

.nt-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.98), rgba(11, 31, 58, 0.9) 54%, rgba(18, 54, 95, 0.78)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #061629 0%, #0b1f3a 58%, #12365f 100%);
  color: var(--nt-white);
}

.nt-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 50px;
  min-height: 620px;
  padding: 70px 0;
}

.nt-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 6.2vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.nt-hero p {
  max-width: 580px;
  margin: 22px 0 0;
  color: #e2e8f0;
  font-size: 20px;
}

.nt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.nt-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #payment #place_order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 0;
  border-radius: 8px;
  color: var(--nt-white);
  background: var(--nt-orange);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.nt-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #payment #place_order:hover {
  color: var(--nt-white);
  background: var(--nt-orange-dark);
  transform: translateY(-1px);
}

.nt-button-light {
  color: var(--nt-navy);
  background: var(--nt-white);
}

.nt-button-light:hover {
  color: var(--nt-navy);
  background: #eef2f7;
}

.nt-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-height: 420px;
  align-items: end;
}

.nt-fashion-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.nt-fashion-card:nth-child(2) {
  transform: translateY(42px);
}

.nt-fashion-card::before,
.nt-category-art::before {
  content: "";
  position: absolute;
  inset: 30px 38px 76px;
  border-radius: 34px 34px 10px 10px;
}

.nt-fashion-card-shirt::before,
.nt-category-art-shirt::before {
  background: linear-gradient(160deg, #ffffff, #dbeafe 72%);
  clip-path: polygon(24% 0, 39% 0, 50% 14%, 61% 0, 76% 0, 100% 28%, 78% 43%, 78% 100%, 22% 100%, 22% 43%, 0 28%);
}

.nt-fashion-card-jeans::before,
.nt-category-art-jeans::before {
  background: linear-gradient(160deg, #1d4ed8, #0f172a);
  clip-path: polygon(20% 0, 80% 0, 74% 100%, 55% 100%, 50% 28%, 45% 100%, 26% 100%);
}

.nt-fashion-card span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--nt-white);
  font-size: 28px;
  font-weight: 900;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.nt-section {
  padding: 72px 0;
}

.nt-section-soft {
  background: var(--nt-soft);
}

.nt-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.nt-section h2,
.nt-section-head h2,
.nt-newsletter h2,
.nt-page-hero h1 {
  margin: 0;
  color: var(--nt-navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: 0;
}

.nt-section-head a {
  color: var(--nt-navy-2);
  font-weight: 800;
}

.nt-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.nt-category-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--nt-radius);
  background: var(--nt-white);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.nt-category-card:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
  transform: translateY(-3px);
}

.nt-category-card strong {
  display: block;
  color: var(--nt-navy);
  font-size: 30px;
  line-height: 1.1;
}

.nt-category-card small {
  display: block;
  max-width: 360px;
  margin-top: 8px;
  color: var(--nt-muted);
  font-size: 15px;
}

.nt-category-art {
  position: relative;
  display: block;
  min-height: 160px;
  border-radius: var(--nt-radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(249, 115, 22, 0.16), transparent 24%),
    #eef2f7;
}

.nt-category-art::before {
  inset: 24px 36px;
}

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

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  padding: 0 0 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--nt-radius);
  background: var(--nt-white);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.13);
  transform: translateY(-4px);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0;
  background: #eef2f7;
  transition: transform 0.25s ease;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.035);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 16px 16px 4px;
  color: var(--nt-navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.28;
}

.woocommerce ul.products li.product .price {
  display: block;
  padding: 0 16px;
  color: var(--nt-orange);
  font-size: 18px;
  font-weight: 850;
}

.woocommerce ul.products li.product .button {
  margin: 14px 16px 0;
  width: calc(100% - 32px);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

.nt-why {
  color: var(--nt-white);
  background: var(--nt-navy);
}

.nt-why h2 {
  color: var(--nt-white);
  margin-bottom: 28px;
}

.nt-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.nt-why-grid div {
  padding: 24px;
  border-radius: var(--nt-radius);
  background: rgba(255, 255, 255, 0.08);
}

.nt-why-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--nt-navy);
  background: var(--nt-white);
  font-weight: 900;
}

.nt-why-grid h3 {
  margin: 16px 0 8px;
  color: var(--nt-white);
  font-size: 19px;
}

.nt-why-grid p {
  margin: 0;
  color: #d5dfec;
}

.nt-newsletter {
  padding: 54px 0;
  color: var(--nt-white);
  background: var(--nt-navy-2);
}

.nt-newsletter h2 {
  color: var(--nt-white);
}

.nt-newsletter p {
  margin: 8px 0 0;
  color: #dbeafe;
}

.nt-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.nt-newsletter input,
.nt-form input,
.nt-form textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  border: 1px solid var(--nt-line);
  border-radius: 8px;
  background: var(--nt-white);
  padding: 13px 14px;
  color: var(--nt-text);
  font: inherit;
}

.nt-footer {
  color: #cbd5e1;
  background: #071426;
}

.nt-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.15fr 1fr;
  gap: 36px;
  padding: 56px 0;
}

.nt-logo-footer {
  color: var(--nt-white);
}

.nt-logo-footer .nt-logo-img {
  width: 230px;
  max-width: 100%;
  filter: none;
}

.nt-footer h3 {
  margin: 0 0 14px;
  color: var(--nt-white);
  font-size: 17px;
}

.nt-footer p {
  margin: 8px 0;
}

.nt-footer-menu {
  display: grid;
  gap: 8px;
  align-items: start;
}

.nt-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.nt-socials a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--nt-white);
  font-weight: 800;
}

.nt-footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

.nt-page-hero {
  padding: 68px 0;
  color: var(--nt-white);
  background: linear-gradient(135deg, var(--nt-navy), var(--nt-navy-2));
}

.nt-page-hero h1 {
  color: var(--nt-white);
}

.nt-page-content {
  padding: 58px 0 76px;
}

.nt-content {
  max-width: 920px;
}

.nt-content h2,
.nt-content h3 {
  color: var(--nt-navy);
  line-height: 1.25;
}

.nt-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 28px;
}

.nt-form,
.nt-contact-card {
  padding: 28px;
  border: 1px solid var(--nt-line);
  border-radius: var(--nt-radius);
  background: var(--nt-white);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.nt-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--nt-navy);
  font-weight: 800;
}

.nt-form-success {
  padding: 12px 14px;
  border-radius: 8px;
  color: #14532d;
  background: #dcfce7;
  font-weight: 800;
}

.nt-shop-shell {
  padding-top: 34px;
  padding-bottom: 82px;
}

.nt-shop-shell > .page-title {
  display: none;
}

.woocommerce .woocommerce-breadcrumb {
  color: var(--nt-muted);
  font-size: 14px;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--nt-navy-2);
  font-weight: 750;
}

.woocommerce-products-header {
  display: none;
}

.nt-shop-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: end;
  margin: 10px 0 28px;
  padding: 34px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--nt-radius);
  background:
    radial-gradient(circle at 94% 12%, rgba(249, 115, 22, 0.13), transparent 26%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 54%, #eef4fb 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.nt-shop-kicker {
  margin: 0 0 8px;
  color: var(--nt-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nt-shop-intro h1,
.woocommerce-products-header__title.page-title {
  margin: 0;
  color: var(--nt-navy);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.nt-shop-intro p:not(.nt-shop-kicker) {
  max-width: 600px;
  margin: 12px 0 0;
  color: var(--nt-muted);
  font-size: 17px;
}

.nt-shop-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nt-shop-cats a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  color: var(--nt-navy);
  background: var(--nt-white);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.nt-shop-cats a:hover {
  border-color: rgba(249, 115, 22, 0.35);
  color: var(--nt-orange);
}

.woocommerce .woocommerce-result-count {
  margin: 0 0 18px;
  padding: 11px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  color: var(--nt-muted);
  background: #f8fafc;
  font-size: 14px;
  font-weight: 750;
}

.woocommerce .woocommerce-ordering {
  margin: 0 0 18px;
}

.woocommerce .woocommerce-ordering select {
  min-height: 44px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  color: var(--nt-navy);
  background: var(--nt-white);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.woocommerce div.product div.images img {
  border-radius: var(--nt-radius);
  background: #f8fafc;
}

.woocommerce div.product .product_title {
  color: var(--nt-navy);
  margin-bottom: 10px;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.1;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--nt-orange);
  font-size: 30px;
  font-weight: 900;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 1fr);
  gap: 46px;
  align-items: start;
}

.woocommerce div.product::before,
.woocommerce div.product::after {
  display: none;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
  margin: 0;
}

.woocommerce div.product div.images {
  position: sticky;
  top: 110px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--nt-radius);
  background: var(--nt-white);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.woocommerce div.product div.summary {
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--nt-radius);
  background:
    radial-gradient(circle at 96% 0%, rgba(249, 115, 22, 0.11), transparent 24%),
    var(--nt-white);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.woocommerce div.product .woocommerce-product-details__short-description {
  margin: 18px 0 22px;
  padding: 18px 0;
  border-top: 1px solid var(--nt-line);
  border-bottom: 1px solid var(--nt-line);
  color: #334155;
  font-size: 17px;
}

.nt-product-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
}

.nt-product-promise span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--nt-navy);
  background: #eef4fb;
  font-size: 13px;
  font-weight: 850;
}

.woocommerce div.product form.cart {
  margin-top: 18px;
}

.woocommerce div.product form.cart .variations {
  margin: 0 0 18px;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
  display: block;
  padding: 0;
  line-height: 1.3;
}

.woocommerce div.product form.cart .variations label {
  display: block;
  margin-bottom: 8px;
  color: var(--nt-navy);
  font-size: 14px;
  font-weight: 900;
}

.woocommerce div.product form.cart .variations select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 8px;
  color: var(--nt-navy);
  background: #f8fafc;
  font: inherit;
  font-weight: 750;
}

.woocommerce div.product form.cart .reset_variations {
  display: inline-flex;
  margin-top: 8px;
  color: var(--nt-orange);
  font-size: 13px;
  font-weight: 850;
}

.woocommerce div.product form.cart div.quantity {
  margin: 0 12px 0 0;
}

.woocommerce .quantity .qty {
  width: 74px;
  min-height: 48px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 8px;
  color: var(--nt-navy);
  font-size: 16px;
  font-weight: 850;
}

.woocommerce div.product form.cart .button {
  min-height: 48px;
  padding-inline: 30px;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.22);
}

.woocommerce div.product form.cart .button.disabled,
.woocommerce div.product form.cart .button:disabled,
.woocommerce div.product form.cart .button.disabled:hover,
.woocommerce div.product form.cart .button:disabled:hover {
  color: var(--nt-white);
  background: var(--nt-orange);
  opacity: 0.52;
  cursor: not-allowed;
}

.nt-checkout-note {
  clear: both;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #334155;
  background: #f8fafc;
  font-size: 14px;
  font-weight: 750;
}

.woocommerce div.product .product_meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--nt-line);
  color: var(--nt-muted);
  font-size: 14px;
}

.woocommerce div.product .product_meta a {
  color: var(--nt-navy-2);
  font-weight: 850;
}

.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 18px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--nt-radius);
  background: var(--nt-white);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin: 0;
  padding: 0 22px;
  background: #f8fafc;
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 15px 0;
  color: var(--nt-navy);
  font-weight: 900;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0;
  padding: 26px;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  margin-top: 0;
  color: var(--nt-navy);
}

.woocommerce div.product .related.products {
  grid-column: 1 / -1;
  margin-top: 28px;
}

.woocommerce div.product .related.products > h2 {
  color: var(--nt-navy);
  font-size: 32px;
}

.woocommerce table.shop_table {
  border: 1px solid var(--nt-line);
  border-radius: var(--nt-radius);
  overflow: hidden;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--nt-orange);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--nt-orange);
}

@media (max-width: 1024px) {
  .nt-header-inner {
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 0;
  }

  .nt-menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .nt-nav {
    display: none;
    order: 3;
    flex-basis: 100%;
  }

  .nt-nav.is-open {
    display: block;
  }

  .nt-menu {
    display: grid;
    gap: 12px;
    padding: 14px 0;
  }

  .nt-header-actions {
    order: 2;
    width: 100%;
  }

  .nt-header-actions .woocommerce-product-search {
    flex: 1;
  }

  .nt-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .nt-shop-intro {
    grid-template-columns: 1fr;
  }

  .nt-shop-cats {
    justify-content: flex-start;
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .woocommerce div.product div.images {
    position: static;
  }
}

@media (max-width: 720px) {
  .nt-container {
    width: min(100% - 22px, 1180px);
  }

  .nt-logo-img {
    width: 196px;
    max-width: 58vw;
  }

  .nt-header-actions {
    display: grid;
    grid-template-columns: 1fr 42px 42px;
  }

  .nt-hero-grid {
    gap: 32px;
    padding: 46px 0;
  }

  .nt-hero p {
    font-size: 17px;
  }

  .nt-hero-visual,
  .nt-category-grid,
  .nt-review-grid,
  .nt-newsletter-inner,
  .nt-contact-layout {
    grid-template-columns: 1fr;
  }

  .nt-hero-visual {
    min-height: auto;
  }

  .nt-fashion-card {
    min-height: 240px;
  }

  .nt-category-card {
    grid-template-columns: 1fr;
  }

  .nt-category-art {
    min-height: 180px;
  }

  .nt-why-grid,
  .woocommerce ul.products,
  .nt-footer-grid {
    grid-template-columns: 1fr;
  }

  .nt-shop-intro {
    padding: 24px;
  }

  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering {
    float: none;
    width: 100%;
  }

  .woocommerce .woocommerce-ordering select {
    width: 100%;
  }

  .woocommerce div.product div.summary {
    padding: 22px;
  }

  .woocommerce div.product {
    display: block;
  }

  .woocommerce div.product div.images {
    margin-bottom: 22px;
    padding: 12px;
  }

  .woocommerce div.product div.summary {
    position: relative;
    z-index: 2;
    clear: both;
  }

  .woocommerce div.product .product_title {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.08;
  }

  .woocommerce div.product form.cart div.quantity,
  .woocommerce div.product form.cart .button {
    float: none;
    width: 100%;
    margin: 0 0 10px;
  }

  .woocommerce .quantity .qty {
    width: 100%;
  }

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

  .nt-section-head {
    display: grid;
  }

  .nt-newsletter form {
    display: grid;
  }
}
