:root {
  --nc-pink: #e41468;
  --nc-pink-dark: #b50d4f;
  --nc-brown: #4b3307;
  --nc-brown-2: #2b1b07;
  --nc-gold: #d89019;
  --nc-leaf: #2f6d4c;
  --nc-forest: #173827;
  --nc-cream: #fff8e8;
  --nc-paper: #fffdf7;
  --nc-ink: #20170d;
  --nc-muted: #6c604f;
  --nc-border: #eadfc9;
  --nc-shadow: 0 22px 70px rgba(43, 27, 7, 0.14);
  --nc-radius: 8px;
  --nc-container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--nc-brown-2);
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 880;
}

h3 {
  font-size: 1.25rem;
  font-weight: 850;
}

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

.nc-skip-link:focus {
  z-index: 999;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--nc-ink);
  color: #fff;
}

.nc-container {
  width: var(--nc-container);
  margin-inline: auto;
}

.nc-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(234, 223, 201, 0.82);
  backdrop-filter: blur(18px);
}

.nc-topbar {
  background: var(--nc-brown-2);
  color: var(--nc-cream);
  font-size: 0.82rem;
  font-weight: 780;
}

.nc-topbar__inner {
  display: flex;
  justify-content: center;
  gap: 28px;
  min-height: 34px;
  align-items: center;
}

.nc-header__inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 86px;
}

.nc-brand img {
  width: 220px;
}

.nc-nav__list {
  display: flex;
  justify-content: center;
  gap: 26px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nc-nav a {
  color: var(--nc-brown);
  font-size: 0.94rem;
  font-weight: 780;
}

.nc-nav a:hover,
.nc-nav a:focus {
  color: var(--nc-pink);
}

.nc-cart-link,
.nc-button,
.button,
.single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--nc-radius);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nc-cart-link {
  color: var(--nc-brown);
  border-color: var(--nc-border);
}

.nc-cart-link span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--nc-pink);
  color: #fff;
  font-size: 1.05rem;
}

.nc-button--primary,
.single_add_to_cart_button {
  background: var(--nc-pink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(228, 20, 104, 0.23);
}

.nc-button--dark,
.button {
  background: var(--nc-brown);
  color: #fff;
}

.nc-button--light {
  background: rgba(255, 248, 232, 0.92);
  color: var(--nc-brown);
  border-color: rgba(255, 248, 232, 0.45);
}

.nc-button:hover,
.button:hover,
.single_add_to_cart_button:hover,
.nc-cart-link:hover {
  transform: translateY(-1px);
}

.nc-menu-toggle {
  display: none;
}

.nc-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, calc(100vh - 120px), 700px);
  background: var(--nc-forest);
  color: #fff;
}

.nc-hero__image {
  position: absolute;
  inset: 0;
}

.nc-hero__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(24, 16, 7, 0.86) 0%, rgba(24, 16, 7, 0.58) 44%, rgba(24, 16, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(23, 56, 39, 0.6) 0%, rgba(23, 56, 39, 0.05) 38%);
}

.nc-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nc-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 64px;
  align-items: center;
  min-height: inherit;
  padding: 42px 0 56px;
}

.nc-hero__content {
  max-width: 700px;
}

.nc-hero h1 {
  color: #fff;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.24);
}

.nc-hero p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 248, 232, 0.94);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.38;
}

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

.nc-hero__product {
  align-self: end;
  display: flex;
  justify-content: center;
}

.nc-hero__product img {
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.34));
}

.nc-buy-strip {
  position: relative;
  z-index: 2;
  margin-top: -44px;
}

.nc-buy-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: var(--nc-cream);
  border: 1px solid rgba(234, 223, 201, 0.94);
  border-radius: 8px;
  box-shadow: var(--nc-shadow);
}

.nc-buy-strip__grid > div {
  padding: 24px 28px;
  border-right: 1px solid var(--nc-border);
}

.nc-buy-strip__grid > div:last-child {
  border-right: 0;
}

.nc-buy-strip strong {
  display: block;
  color: var(--nc-pink);
  font-size: 1.55rem;
  line-height: 1;
}

.nc-buy-strip span {
  display: block;
  margin-top: 8px;
  color: var(--nc-muted);
  font-size: 0.95rem;
  font-weight: 720;
}

.nc-section {
  padding: 104px 0;
}

.nc-section__header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 42px;
}

.nc-section__header p {
  color: var(--nc-muted);
  font-size: 1.1rem;
}

.nc-product-grid,
.products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nc-product-card,
.products .product {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  box-shadow: 0 14px 36px rgba(75, 51, 7, 0.08);
}

.nc-product-card__media {
  display: grid;
  min-height: 240px;
  place-items: end center;
  padding: 18px 14px 0;
  background: linear-gradient(180deg, #f7eddb 0%, #fff8e8 100%);
}

.nc-product-card__image {
  width: min(82%, 190px);
  height: 260px;
  object-fit: contain;
}

.nc-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.nc-product-card h2,
.nc-product-card h3 {
  font-size: 1.05rem;
  line-height: 1.14;
}

.nc-product-card p {
  color: var(--nc-muted);
  font-size: 0.92rem;
}

.nc-product-card__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.nc-price,
.price {
  color: var(--nc-brown);
  font-weight: 900;
}

.nc-center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.nc-story {
  padding: 100px 0;
  background: var(--nc-brown-2);
  color: var(--nc-cream);
}

.nc-story__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.nc-story__media {
  overflow: hidden;
  border-radius: var(--nc-radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.nc-story__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.nc-story h2,
.nc-process h2,
.nc-origin h2 {
  color: inherit;
}

.nc-story p {
  margin-top: 22px;
  color: rgba(255, 248, 232, 0.82);
  font-size: 1.12rem;
}

.nc-link-arrow {
  display: inline-flex;
  margin-top: 30px;
  color: #fff;
  font-weight: 850;
}

.nc-link-arrow::after {
  margin-left: 10px;
  content: "->";
}

.nc-section--process {
  background: var(--nc-cream);
}

.nc-process {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 58px;
}

.nc-process__grid {
  display: grid;
  gap: 14px;
}

.nc-process article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
}

.nc-process article span {
  grid-row: span 2;
  color: var(--nc-pink);
  font-size: 1.1rem;
  font-weight: 900;
}

.nc-process article p {
  margin-top: 6px;
  color: var(--nc-muted);
}

.nc-origin {
  padding: 92px 0;
}

.nc-origin__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.nc-origin p {
  margin-top: 20px;
  color: var(--nc-muted);
  font-size: 1.1rem;
}

.nc-origin__logos {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 18px;
  align-items: center;
}

.nc-origin__logos img {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
}

.nc-footer {
  padding: 76px 0 28px;
  background: var(--nc-forest);
  color: rgba(255, 248, 232, 0.84);
}

.nc-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) 0.6fr 0.9fr;
  gap: 54px;
}

.nc-footer__logo {
  width: 230px;
  padding: 10px;
  background: var(--nc-cream);
  border-radius: var(--nc-radius);
}

.nc-footer p {
  margin-top: 18px;
}

.nc-footer h2 {
  color: #fff;
  font-size: 1rem;
}

.nc-footer ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.nc-footer li + li {
  margin-top: 10px;
}

.nc-footer a:hover {
  color: #fff;
}

.nc-footer__bottom {
  padding-top: 30px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 248, 232, 0.14);
  font-size: 0.9rem;
}

.nc-page,
.nc-shop,
.nc-single-product {
  padding: 80px 0 100px;
}

.nc-entry {
  max-width: 760px;
}

.nc-entry__content {
  margin-top: 28px;
}

.nc-shop-hero {
  padding: 70px 0 48px;
  margin: -80px 0 44px;
  background: var(--nc-cream);
}

.nc-shop-hero__inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.nc-shop-hero p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--nc-muted);
  font-size: 1.1rem;
}

.nc-shop__toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.nc-shop .products {
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: start;
}

.nc-shop .products::before,
.nc-shop .products::after {
  display: none;
}

.nc-shop .products .product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.nc-shop .nc-product-card__media {
  min-height: 300px;
}

.nc-shop .nc-product-card__image {
  width: min(78%, 210px);
  height: 285px;
}

.woocommerce-ordering select {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  background: #fff;
  color: var(--nc-brown);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 720;
}

.woocommerce-pagination {
  margin-top: 34px;
}

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

.woocommerce-pagination a,
.woocommerce-pagination span {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
}

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

.nc-single-product__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 0.75fr);
  gap: 70px;
  align-items: start;
}

.nc-single-product__gallery {
  padding: 34px;
  background: var(--nc-cream);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
}

.nc-single-product__summary {
  position: sticky;
  top: 142px;
}

.nc-single-product__summary .product_title {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.nc-single-product__summary .price {
  display: block;
  margin: 18px 0;
  color: var(--nc-pink);
  font-size: 1.6rem;
}

.nc-purchase-note {
  display: grid;
  gap: 4px;
  padding: 18px;
  margin: 24px 0;
  background: var(--nc-cream);
  border-left: 5px solid var(--nc-pink);
  border-radius: var(--nc-radius);
}

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

.quantity input {
  width: 78px;
  min-height: 46px;
  padding: 0 10px;
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  color: var(--nc-brown);
  font: inherit;
  font-weight: 800;
}

.product_meta {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: var(--nc-muted);
  font-size: 0.92rem;
}

.nc-product-detail {
  margin-top: 70px;
}

.woocommerce-tabs {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
}

.woocommerce-tabs .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.woocommerce-tabs .tabs a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  background: var(--nc-cream);
  border-radius: var(--nc-radius);
  color: var(--nc-brown);
  font-weight: 820;
}

.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  margin-bottom: 22px;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 16px 18px;
  background: var(--nc-cream);
  border-left: 5px solid var(--nc-pink);
  border-radius: var(--nc-radius);
  color: var(--nc-brown);
  list-style-position: inside;
}

@media (max-width: 1100px) {
  .nc-product-grid,
  .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nc-hero__inner {
    grid-template-columns: 1fr 360px;
    gap: 34px;
  }
}

@media (max-width: 860px) {
  :root {
    --nc-container: min(100vw - 28px, 720px);
  }

  .nc-topbar__inner {
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
  }

  .nc-header__inner {
    grid-template-columns: 1fr auto auto;
    min-height: 72px;
    gap: 12px;
  }

  .nc-brand img {
    width: 178px;
  }

  .nc-menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--nc-border);
    border-radius: var(--nc-radius);
    background: #fff;
  }

  .nc-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--nc-brown);
  }

  .nc-nav {
    position: fixed;
    top: 106px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--nc-border);
    border-radius: var(--nc-radius);
    box-shadow: var(--nc-shadow);
  }

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

  .nc-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nc-nav a {
    display: block;
    padding: 12px 4px;
  }

  .nc-cart-link {
    min-width: 46px;
    padding: 0;
    font-size: 0;
  }

  .nc-hero {
    min-height: auto;
  }

  .nc-hero__inner {
    grid-template-columns: 1fr;
    padding: 46px 0 70px;
  }

  .nc-hero__content {
    max-width: none;
  }

  .nc-hero__product {
    justify-content: flex-start;
  }

  .nc-hero__product img {
    max-height: 300px;
  }

  .nc-buy-strip {
    margin-top: -54px;
  }

  .nc-buy-strip__grid,
  .nc-section__header,
  .nc-story__grid,
  .nc-process,
  .nc-origin__grid,
  .nc-footer__grid,
  .nc-shop-hero__inner,
  .nc-single-product__grid {
    grid-template-columns: 1fr;
  }

  .nc-buy-strip__grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--nc-border);
  }

  .nc-buy-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .nc-section,
  .nc-story,
  .nc-section--process,
  .nc-origin {
    padding: 72px 0;
  }

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

  .nc-origin__logos {
    grid-template-columns: 1fr;
  }

  .nc-shop__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nc-single-product__summary {
    position: static;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .nc-actions {
    flex-direction: column;
  }

  .nc-button,
  .button,
  .single_add_to_cart_button {
    width: 100%;
  }

  .nc-product-grid,
  .products {
    grid-template-columns: 1fr;
  }

  .nc-product-card__media {
    min-height: 220px;
  }

  .nc-product-card__image {
    max-height: 250px;
  }

  .nc-process article {
    grid-template-columns: 1fr;
  }

  .nc-process article span {
    grid-row: auto;
  }
}
