.nf-chs {
  --nf-ink: #24343a;
  --nf-muted: #617179;
  --nf-line: #f5dec5;
  --nf-paper: #fffdf8;
  --nf-cream: #f0fbff;
  --nf-gold: #d17800;
  --nf-red: #ff6f61;
  --nf-green: #23b98a;
  --nf-blue: #087fb6;
  --nf-shadow: 0 18px 42px rgba(255, 165, 92, 0.14);
  color: var(--nf-ink);
  background: var(--nf-paper);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
}

.nf-chs *,
.nf-chs *::before,
.nf-chs *::after {
  box-sizing: border-box;
}

.nf-chs a {
  color: inherit;
}

.nf-chs__wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nf-chs__project-head {
  padding: 44px 0 28px;
  text-align: center;
  background: linear-gradient(180deg, #fff0c9 0%, #fffdf8 100%);
}

.nf-chs__campaign-summary {
  padding: 18px 0 30px;
  background: #fffdf8;
}

.nf-chs__campaign-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: start;
}

.nf-chs__campaign-media {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--nf-line);
  border-radius: 8px;
  background: #dff7ff;
  box-shadow: var(--nf-shadow);
}

.nf-chs__campaign-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nf-chs__image-frame {
  margin: 0;
}

.nf-chs__image-credit,
.nf-chs__reward-credit {
  margin: 0;
  color: #6f5b4f;
  font-size: 0.78rem;
  line-height: 1.5;
}

.nf-chs__image-credit {
  padding: 8px 12px 10px;
  background: rgba(255, 251, 241, 0.9);
}

.nf-chs__campaign-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--nf-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--nf-shadow);
}

.nf-chs__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--nf-gold);
  font-weight: 700;
  margin: 0 0 18px;
}

.nf-chs__kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

.nf-chs h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: 3.4rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.nf-chs__deck {
  max-width: 880px;
  margin: 22px auto 0;
  font-size: 1.18rem;
  font-weight: 600;
  text-align: center;
}

.nf-chs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  justify-content: center;
}

.nf-chs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 253, 246, 0.6);
  text-decoration: none;
  font-weight: 800;
}

.nf-chs__button--primary {
  background: #ffd86a;
  color: #26343a;
  border-color: #ffd86a;
}

.nf-chs__button--wide {
  width: 100%;
}

.nf-chs__assurance {
  padding-top: 6px;
  color: var(--nf-muted);
  font-size: 0.94rem;
}

.nf-chs__tabs {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 253, 248, 0.97);
  border-top: 1px solid var(--nf-line);
  border-bottom: 1px solid var(--nf-line);
  box-shadow: 0 8px 18px rgba(255, 165, 92, 0.08);
}

.nf-chs__tabs .nf-chs__wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nf-chs__tabs a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid transparent;
  color: var(--nf-muted);
  text-decoration: none;
  font-weight: 900;
}

.nf-chs__tabs a:hover,
.nf-chs__tabs a:focus-visible {
  color: var(--nf-blue);
  border-bottom-color: var(--nf-blue);
}

.nf-chs__progress-band {
  background: #fff2cf;
  border-top: 1px solid var(--nf-line);
  border-bottom: 1px solid var(--nf-line);
  padding: 28px 0;
}

.nf-chs__nf-progress-widget,
.nf-chs__progress-widget {
  width: min(100%, 980px);
  margin: 0 auto;
}

.nf-chs__nf-progress-widget .nf-card {
  border: 1px solid var(--nf-line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(255, 165, 92, 0.1);
}

.nf-chs__progress-widget {
  border: 1px solid var(--nf-line);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(255, 165, 92, 0.1);
}

.nf-chs__progress-widget-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
}

.nf-chs__progress-widget h2 {
  margin-bottom: 0;
}

.nf-chs__progress-rate {
  text-align: right;
}

.nf-chs__progress-rate b {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
}

.nf-chs__progress-rate span {
  color: var(--nf-muted);
  font-weight: 800;
}

.nf-chs__kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--nf-line);
  border-radius: 8px;
  background: #ffd9ad;
}

.nf-chs__kpi {
  background: #ffffff;
  padding: 16px;
}

.nf-chs__kpi span {
  display: block;
  color: var(--nf-muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.nf-chs__kpi b {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.nf-chs__section {
  padding: 84px 0;
  scroll-margin-top: 78px;
}

.nf-chs__section--cream {
  background: var(--nf-cream);
}

.nf-chs__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 48px;
  align-items: center;
}

.nf-chs__eyebrow {
  color: var(--nf-gold);
  font-weight: 900;
  margin: 0 0 10px;
}

.nf-chs h2 {
  margin: 0 0 18px;
  font-size: 2.5rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.nf-chs h3 {
  margin: 0 0 10px;
  font-size: 1.32rem;
  line-height: 1.32;
  letter-spacing: 0;
}

.nf-chs p {
  margin: 0;
}

.nf-chs__lead {
  font-size: 1.08rem;
  color: var(--nf-muted);
}

.nf-chs__image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--nf-shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nf-chs__story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.nf-chs__story-item {
  padding-top: 22px;
  border-top: 4px solid var(--nf-gold);
}

.nf-chs__story-item p {
  color: var(--nf-muted);
}

.nf-chs__progress {
  background: #ffffff;
  border: 1px solid var(--nf-line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(255, 165, 92, 0.1);
}

.nf-chs__bar {
  height: 14px;
  background: #ffe9c7;
  border-radius: 999px;
  overflow: hidden;
  margin: 18px 0;
}

.nf-chs__bar span {
  display: block;
  height: 100%;
  width: var(--nf-progress);
  background: linear-gradient(90deg, var(--nf-red), var(--nf-gold), var(--nf-green));
}

.nf-chs__progress-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--nf-muted);
  font-weight: 700;
}

.nf-chs__rewards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.nf-chs__support-visual {
  margin: 24px 0 28px;
  overflow: hidden;
  border: 1px solid var(--nf-line);
  border-radius: 8px;
  background: #ffe9c7;
  box-shadow: var(--nf-shadow);
}

.nf-chs__support-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.nf-chs__reward {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--nf-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(255, 165, 92, 0.1);
  overflow: hidden;
}

.nf-chs__reward-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #ffe9c7;
}

.nf-chs__reward-credit {
  margin-top: 10px;
  margin-bottom: 0;
}

.nf-chs__reward > :not(.nf-chs__reward-image) {
  margin-left: 22px;
  margin-right: 22px;
}

.nf-chs__price {
  color: var(--nf-red);
  font-size: 1.4rem;
  font-weight: 900;
  margin-top: 20px;
  margin-bottom: 10px;
}

.nf-chs__reward ul,
.nf-chs__list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.nf-chs__reward li,
.nf-chs__list li {
  position: relative;
  padding-left: 1.25em;
  margin-top: 8px;
  color: var(--nf-muted);
}

.nf-chs__reward li::before,
.nf-chs__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nf-green);
}

.nf-chs__reward .nf-chs__button {
  margin-top: auto;
  margin-bottom: 22px;
  width: auto;
  background: var(--nf-blue);
  color: #fffdf6;
  border-color: var(--nf-blue);
}

.nf-chs__timeline {
  display: grid;
  gap: 14px;
}

.nf-chs__timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--nf-line);
}

.nf-chs__timeline-item b {
  color: var(--nf-blue);
}

.nf-chs__faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nf-chs__faq details {
  border: 1px solid var(--nf-line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px 20px;
}

.nf-chs__faq summary {
  cursor: pointer;
  font-weight: 900;
}

.nf-chs__section--legal {
  background: #fffdf8;
}

.nf-chs__legal-page-head {
  padding: 52px 0 34px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 216, 106, 0.62), rgba(255, 253, 248, 0.98)),
    #fff7e9;
}

.nf-chs__legal-page-head .nf-chs__kicker {
  justify-content: center;
}

.nf-chs__legal-page-head .nf-chs__actions {
  margin-top: 24px;
}

.nf-chs-legal-page .nf-chs__section--legal {
  padding-top: 44px;
}

.nf-chs__legal-panels {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.nf-chs__legal-panel {
  overflow: hidden;
  border: 1px solid var(--nf-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--nf-shadow);
}

.nf-chs__legal-panel summary {
  min-height: 58px;
  padding: 16px 22px;
  cursor: pointer;
  background: #f0fbff;
  color: var(--nf-blue);
  font-size: 1.05rem;
  font-weight: 900;
}

.nf-chs__legal-panel > p,
.nf-chs__legal-panel > h3,
.nf-chs__legal-panel > .nf-chs__list,
.nf-chs__legal-list {
  margin-left: 22px;
  margin-right: 22px;
}

.nf-chs__legal-panel > p {
  margin-top: 16px;
  margin-bottom: 0;
}

.nf-chs__legal-panel > h3 {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 1rem;
}

.nf-chs__legal-panel > :last-child {
  margin-bottom: 22px;
}

.nf-chs__legal-list {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid var(--nf-line);
}

.nf-chs__legal-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--nf-line);
}

.nf-chs__legal-list dt {
  color: var(--nf-muted);
  font-weight: 900;
}

.nf-chs__legal-list dd {
  margin: 0;
}

.nf-chs__footer-cta {
  text-align: center;
  color: #fffdf6;
  background: #e87a52;
  padding: 72px 16px;
}

.nf-chs__profile {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.nf-chs__profile-card {
  border: 1px solid var(--nf-line);
  border-radius: 8px;
  background: #fff8eb;
  padding: 24px;
  box-shadow: 0 12px 26px rgba(255, 165, 92, 0.1);
}

.nf-chs__profile-card h3 {
  margin-top: 0;
}

.nf-chs__footer-cta h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}

.nf-chs__site-footer {
  padding: 56px 0 24px;
  background: #6b3f31;
  color: #fffdf6;
}

.nf-chs__site-footer .nf-chs__eyebrow {
  color: #ffd978;
}

.nf-chs__footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: start;
}

.nf-chs__footer-lead {
  margin: 0 0 12px;
  font-size: 1.12rem;
  font-weight: 900;
}

.nf-chs__footer-card {
  border: 1px solid rgba(255, 217, 120, 0.38);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.16);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(43, 21, 13, 0.16);
}

.nf-chs__footer-links,
.nf-chs__footer-contact {
  margin: 16px 0 0;
  padding: 0;
}

.nf-chs__footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.nf-chs__footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #ffd978;
  color: #5a3429;
  text-decoration: none;
  font-weight: 900;
}

.nf-chs__footer-contact {
  display: grid;
  gap: 12px;
}

.nf-chs__footer-contact div {
  display: grid;
  gap: 3px;
}

.nf-chs__footer-contact dt {
  color: #ffd978;
  font-size: 0.84rem;
  font-weight: 900;
}

.nf-chs__footer-contact dd {
  margin: 0;
  color: rgba(255, 253, 246, 0.9);
}

.nf-chs__footer-contact a {
  color: inherit;
}

.nf-chs__copyright {
  width: min(1120px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 217, 120, 0.22);
  color: rgba(255, 253, 246, 0.76);
  font-size: 0.86rem;
}

body.nf-chs-commerce {
  background: #fffaf1;
  color: #26343a;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nf-chs-commerce *,
body.nf-chs-commerce *::before,
body.nf-chs-commerce *::after {
  box-sizing: border-box;
}

body.nf-chs-commerce main {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px !important;
  margin: 36px auto 72px !important;
  padding: 0 !important;
}

body.nf-chs-commerce h1,
body.nf-chs-commerce h2,
body.nf-chs-commerce h3 {
  letter-spacing: 0;
}

body.nf-chs-commerce h1 {
  margin: 0 0 24px;
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  line-height: 1.12;
}

.nf-chs-commerce__intro {
  margin: 0 0 24px;
  padding: 28px;
  border: 1px solid #f0ddc7;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 217, 120, 0.88), rgba(255, 253, 246, 0.96) 48%, rgba(234, 248, 255, 0.92)),
    #fffdf6;
  box-shadow: 0 18px 42px rgba(51, 97, 119, 0.12);
}

.nf-chs-commerce__kicker {
  margin: 0 0 10px;
  color: #a85600;
  font-size: 0.82rem;
  font-weight: 900;
}

.nf-chs-commerce__intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.nf-chs-commerce__intro h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.25;
}

.nf-chs-commerce__intro p {
  max-width: 720px;
  margin: 10px 0 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.8;
}

.nf-chs-commerce__steps {
  display: grid;
  gap: 10px;
  min-width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nf-chs-commerce__steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #ffffff;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(168, 86, 0, 0.12);
}

.nf-chs-commerce__steps span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #cf6542;
  color: #fffdf6;
  font-size: 0.9rem;
}

body.nf-chs-commerce .woocommerce-notices-wrapper {
  margin-bottom: 22px;
}

body.nf-chs-commerce .woocommerce-message,
body.nf-chs-commerce .woocommerce-info,
body.nf-chs-commerce .woocommerce-error {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  margin: 0 0 22px;
  padding: 18px 22px;
  border: 2px solid #ffd978;
  border-left: 8px solid #24a979;
  border-radius: 8px;
  background: #fffdf6;
  color: #26343a;
  box-shadow: 0 14px 34px rgba(168, 86, 0, 0.12);
}

body.nf-chs-commerce .woocommerce-error {
  border-left-color: #e95f5b;
}

body.nf-chs-commerce .woocommerce-message::before,
body.nf-chs-commerce .woocommerce-info::before,
body.nf-chs-commerce .woocommerce-error::before {
  display: none;
}

.nf-chs-commerce__notice-mark {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #24a979;
  color: #ffffff;
  font-weight: 900;
}

.nf-chs-commerce__notice-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1.5;
}

.nf-chs-commerce__notice-copy strong {
  font-size: 1.05rem;
}

.nf-chs-commerce__notice-copy small {
  color: #5d6970;
  font-weight: 700;
}

body.nf-chs-commerce .woocommerce-message .button,
body.nf-chs-commerce .woocommerce-info .button,
body.nf-chs-commerce .woocommerce-error .button,
body.nf-chs-commerce .button,
body.nf-chs-commerce button.button,
body.nf-chs-commerce input.button,
body.nf-chs-commerce #place_order {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: #cf6542;
  color: #fffdf6;
  font-weight: 900;
  text-decoration: none;
  box-shadow: none;
}

body.nf-chs-commerce .woocommerce-message .button,
body.nf-chs-commerce .woocommerce-info .button,
body.nf-chs-commerce .woocommerce-error .button {
  box-sizing: border-box;
  margin-left: auto;
  padding: 12px 18px;
  white-space: nowrap;
}

body.nf-chs-commerce .button:hover,
body.nf-chs-commerce button.button:hover,
body.nf-chs-commerce input.button:hover,
body.nf-chs-commerce #place_order:hover {
  background: #a85600;
  color: #fffdf6;
}

body.nf-chs-commerce form.checkout,
body.nf-chs-commerce .woocommerce-cart-form,
body.nf-chs-commerce .cart-collaterals,
body.nf-chs-commerce .woocommerce-checkout-review-order,
body.nf-chs-commerce #customer_details,
body.nf-chs-commerce .woocommerce-additional-fields,
body.nf-chs-commerce .woocommerce-billing-fields {
  border-radius: 8px;
}

body.nf-chs-commerce #customer_details,
body.nf-chs-commerce .woocommerce-checkout-review-order,
body.nf-chs-commerce .woocommerce-cart-form,
body.nf-chs-commerce .cart_totals {
  border: 1px solid #f0ddc7;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(51, 97, 119, 0.1);
}

body.nf-chs-commerce #customer_details,
body.nf-chs-commerce .woocommerce-checkout-review-order {
  padding: 24px;
}

body.nf-chs-commerce .woocommerce form .form-row label {
  color: #26343a;
  font-weight: 900;
}

body.nf-chs-commerce .woocommerce form .form-row input.input-text,
body.nf-chs-commerce .woocommerce form .form-row textarea,
body.nf-chs-commerce .woocommerce form .form-row select,
body.nf-chs-commerce .select2-container .select2-selection--single {
  min-height: 48px;
  border: 1px solid #d8c2aa;
  border-radius: 6px;
  background: #fffdf6;
  color: #26343a;
}

body.nf-chs-commerce .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
}

body.nf-chs-commerce .select2-container .select2-selection--single .select2-selection__arrow {
  min-height: 48px;
}

body.nf-chs-commerce table.shop_table {
  overflow: hidden;
  border: 1px solid #f0ddc7;
  border-radius: 8px;
  background: #ffffff;
}

body.nf-chs-commerce table.shop_table th,
body.nf-chs-commerce table.shop_table td {
  padding: 16px 18px;
  border-color: #f0ddc7;
}

body.nf-chs-commerce table.shop_table th {
  color: #5d6970;
  font-size: 0.92rem;
  font-weight: 900;
}

body.nf-chs-commerce table.shop_table tfoot th,
body.nf-chs-commerce table.shop_table tfoot td {
  font-size: 1.05rem;
  font-weight: 900;
}

body.nf-chs-commerce .wp-block-woocommerce-cart,
body.nf-chs-commerce .wc-block-cart,
body.nf-chs-commerce .wc-block-components-sidebar,
body.nf-chs-commerce .wc-block-components-main {
  color: #26343a;
}

body.nf-chs-commerce .wc-block-cart__main,
body.nf-chs-commerce .wc-block-components-sidebar,
body.nf-chs-commerce .wc-block-cart-items,
body.nf-chs-commerce .wc-block-components-totals-wrapper {
  border-color: #f0ddc7;
}

body.nf-chs-commerce .wc-block-cart__main,
body.nf-chs-commerce .wc-block-components-sidebar {
  border: 1px solid #f0ddc7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(51, 97, 119, 0.1);
}

body.nf-chs-commerce .wc-block-cart__main {
  padding: 18px;
}

body.nf-chs-commerce .wc-block-components-sidebar {
  padding: 20px;
}

body.nf-chs-commerce .wc-block-components-product-name,
body.nf-chs-commerce .wc-block-components-totals-item__label,
body.nf-chs-commerce .wc-block-components-totals-item__value {
  color: #26343a;
  font-weight: 900;
}

body.nf-chs-commerce .wc-block-components-product-metadata {
  color: #5d6970;
  line-height: 1.7;
}

body.nf-chs-commerce .wc-block-components-button,
body.nf-chs-commerce .wc-block-cart__submit-button {
  min-height: 52px;
  border-radius: 8px;
  background: #cf6542;
  color: #fffdf6;
  font-weight: 900;
  text-decoration: none;
}

body.nf-chs-commerce .wc-block-components-button:hover,
body.nf-chs-commerce .wc-block-cart__submit-button:hover {
  background: #a85600;
  color: #fffdf6;
}

@media (max-width: 900px) {
  .nf-chs__campaign-layout,
  .nf-chs__footer-grid,
  .nf-chs__profile,
  .nf-chs__story,
  .nf-chs__rewards,
  .nf-chs__faq,
  .nf-chs__grid {
    grid-template-columns: 1fr;
  }

  .nf-chs__campaign-media img {
    min-height: 0;
  }

  .nf-chs__support-visual img {
    aspect-ratio: 4 / 3;
    object-position: center center;
  }

  .nf-chs__kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nf-chs__section {
    padding: 58px 0;
  }

  .nf-chs-commerce__intro {
    padding: 22px;
  }

  .nf-chs-commerce__intro-grid {
    grid-template-columns: 1fr;
  }

  .nf-chs-commerce__steps {
    min-width: 0;
  }

  body.nf-chs-commerce .woocommerce-message,
  body.nf-chs-commerce .woocommerce-info,
  body.nf-chs-commerce .woocommerce-error {
    align-items: flex-start;
    flex-direction: column;
  }

  body.nf-chs-commerce .woocommerce-message .button,
  body.nf-chs-commerce .woocommerce-info .button,
  body.nf-chs-commerce .woocommerce-error .button {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    text-align: center;
  }

  body.nf-chs-commerce #customer_details,
  body.nf-chs-commerce .woocommerce-checkout-review-order {
    padding: 18px;
  }

  body.nf-chs-commerce table.shop_table th,
  body.nf-chs-commerce table.shop_table td {
    padding: 13px 12px;
  }

  body.nf-chs-commerce .wc-block-cart__main,
  body.nf-chs-commerce .wc-block-components-sidebar {
    padding: 14px;
  }

  body.nf-chs-commerce .wc-block-components-button,
  body.nf-chs-commerce .wc-block-cart__submit-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .nf-chs__wrap {
    width: min(100% - 24px, 1120px);
  }

  .nf-chs__project-head {
    padding: 32px 0 20px;
  }

  .nf-chs__kicker {
    gap: 8px;
    font-size: 0.88rem;
  }

  .nf-chs__kicker::before {
    width: 26px;
  }

  .nf-chs h1 {
    font-size: 2.05rem;
  }

  .nf-chs h2 {
    font-size: 1.9rem;
  }

  .nf-chs__deck {
    font-size: 1.02rem;
  }

  .nf-chs__progress-rate b {
    font-size: 2.2rem;
  }

  .nf-chs__kpi b {
    font-size: 1.18rem;
  }

  .nf-chs__campaign-layout {
    gap: 16px;
  }

  .nf-chs__campaign-media img {
    min-height: 0;
  }

  .nf-chs__campaign-side {
    padding: 16px;
  }

  .nf-chs__legal-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .nf-chs__tabs {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nf-chs__tabs::-webkit-scrollbar {
    display: none;
  }

  .nf-chs__tabs .nf-chs__wrap {
    width: max-content;
    min-width: 100%;
    display: flex;
  }

  .nf-chs__tabs a {
    min-height: 52px;
    min-width: 112px;
    padding: 0 12px;
    white-space: nowrap;
  }

  .nf-chs__progress-widget-head {
    grid-template-columns: 1fr;
  }

  .nf-chs__progress-rate {
    text-align: left;
  }

  .nf-chs__actions,
  .nf-chs__progress-row {
    flex-direction: column;
  }

  .nf-chs__button {
    width: 100%;
  }

  .nf-chs__timeline-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
