/** Shopify CDN: Minification failed

Line 618:60 Expected identifier but found "{"
Line 618:61 Unexpected "{"
Line 618:70 Expected ":"
Line 620:43 Expected identifier but found "{"
Line 620:44 Unexpected "{"
Line 620:53 Expected ":"
Line 622:44 Expected identifier but found "{"
Line 622:45 Unexpected "{"
Line 622:54 Expected ":"
Line 821:51 Expected identifier but found "{"
... and 2 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:featured-blog (INDEX:14) */
.section-featured-blog {
  background: #FFE4E8 !important;
  padding-block: 3.5rem !important;
}
.section-featured-blog .container {
  max-width: 1280px !important;
  margin-inline: auto !important;
  padding-inline: clamp(1.25rem, 5vw, 4rem) !important;
  text-align: center !important;
}
.section-featured-blog .hometitle {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 700 !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  color: #C47B85 !important;
  margin-bottom: 2rem !important;
}
.section-featured-blog .hometitle a {
  color: #C47B85 !important;
  text-decoration: none !important;
}
.section-featured-blog .article__inner {
  background: rgba(255,255,255,0.8) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 4px 20px rgba(196,123,133,0.08) !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}
.section-featured-blog .article__inner:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 36px rgba(196,123,133,0.15) !important;
}
.section-featured-blog .article-image {
  overflow: hidden !important;
  border-radius: 20px 20px 0 0 !important;
}
.section-featured-blog .article-image img {
  transition: transform 0.3s ease !important;
}
.section-featured-blog .article__inner:hover .article-image img {
  transform: scale(1.05) !important;
}
.section-featured-blog .article h3 {
  padding: 1rem 1.25rem 0 !important;
  margin: 0 !important;
}
.section-featured-blog .article h3 a {
  color: #3D2B1F !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
.section-featured-blog .article h3 a:hover {
  color: #C47B85 !important;
}
.section-featured-blog .meta {
  padding: 0.25rem 1.25rem 0 !important;
  color: #999 !important;
  font-size: 0.8rem !important;
}
.section-featured-blog .rte {
  padding: 0.5rem 1.25rem !important;
  color: #666 !important;
  font-size: 0.9rem !important;
  flex: 1 !important;
}
.section-featured-blog .small-feature-link {
  display: inline-block !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #C47B85 !important;
  text-decoration: none !important;
  margin: 0 1.25rem 1.25rem !important;
}
.section-featured-blog .small-feature-link:hover {
  color: #A05B6B !important;
}
/* END_SECTION:featured-blog */

/* START_SECTION:nh-best-sellers (INDEX:50) */
.nh-sellers {
  width: 100%;
  padding-block: 3rem;
}
.nh-sellers__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}
.nh-sellers__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.nh-sellers__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  
}
.nh-sellers__heart {
  font-size: 1.2rem;
}
.nh-sellers__viewall {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nh-sellers__viewall:hover { opacity: 1; }
.nh-sellers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.nh-sellers__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}
.nh-sellers__card:hover {
  transform: translateY(-6px);
}
.nh-sellers__img-wrap {
  position: relative;
  display: block;
  /* img swap container */
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  background: #FFE4E8;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.nh-sellers__card:hover .nh-sellers__img-wrap {
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
}
.nh-sellers__card:hover .nh-sellers__img-wrap .nh-sellers__img {
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.22));
}
.nh-sellers__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.14));
  transition: opacity 0.35s ease, filter 0.3s ease, transform 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.nh-sellers__img--first {
  opacity: 1;
  z-index: 1;
}
.nh-sellers__img--second {
  opacity: 0;
  z-index: 0;
}
.nh-sellers__img-wrap:hover .nh-sellers__img--first {
  opacity: 0;
}
.nh-sellers__img-wrap:hover .nh-sellers__img--second {
  opacity: 1;
}
.nh-sellers__img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.nh-sellers__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  z-index: 2;
}
.nh-sellers__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nh-sellers__name {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.nh-sellers__name a {
  text-decoration: none;
}
.nh-sellers__name a:hover {
  text-decoration: underline;
}
.nh-sellers__stars {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nh-sellers__price {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 900px) {
  .nh-sellers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .nh-sellers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
/* END_SECTION:nh-best-sellers */

/* START_SECTION:nh-blind-box (INDEX:51) */
.nh-blindbox {
  position: relative;
  width: 100%;
  padding-block: 3rem;
  overflow: hidden;
}
.nh-blindbox__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.nh-blindbox__star {
  position: absolute;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
}
.nh-blindbox__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}
.nh-blindbox__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem;
  
}
.nh-blindbox__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.nh-blindbox__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 2rem 2.5rem;
  border-radius: 20px;
  text-decoration: none;
  min-height: 300px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  gap: 1rem;
  overflow: hidden;
}
.nh-blindbox__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.2);
}
.nh-blindbox__card:hover .nh-blindbox__card-image img {
  filter: drop-shadow(0 14px 40px rgba(0,0,0,0.3));
  transform: scale(1.05);
}
.nh-blindbox__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nh-blindbox__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  
  line-height: 1.2;
}
.nh-blindbox__card-price {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-weight: 400;
}
.nh-blindbox__cta {
  margin-top: 0.75rem;
  display: inline-block;
  background: #FFFFFF;
  color: #C47B85;
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.nh-blindbox__card:hover .nh-blindbox__cta {
  background: #FFE4E8;
  transform: scale(1.03);
}
.nh-blindbox__card-image {
  flex-shrink: 0;
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nh-blindbox__card-image img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.22));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.nh-blindbox__card-image-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
}
@media (max-width: 768px) {
  .nh-blindbox__grid {
    grid-template-columns: 1fr;
  }
  .nh-blindbox__card {
    flex-direction: column-reverse;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .nh-blindbox__card-content {
    align-items: center;
  }
  .nh-blindbox__card-image {
    width: 70%;
  }
  .nh-blindbox__cta {
    align-self: center;
  }
}
/* END_SECTION:nh-blind-box */

/* START_SECTION:nh-blog-highlights (INDEX:52) */
.nh-blog { width: 100%; padding-block: 3rem; }
.nh-blog__inner { max-width: 1280px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 4rem); }
.nh-blog__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; text-align: center; margin: 0 0 2rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem;  }
.nh-blog__pencil { font-size: 1.4rem; }
.nh-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.nh-blog__card { display: flex; flex-direction: column; border-radius: 20px; overflow: hidden; background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.07); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.nh-blog__card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }





.nh-blog__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.nh-blog__card-title { font-size: 1.05rem; font-weight: 600; margin: 0; line-height: 1.3; }
.nh-blog__excerpt { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.5; flex: 1; }
.nh-blog__card-title a:hover { color: #C47B85 !important; }
.nh-blog__read-more { font-size: 0.85rem; font-weight: 600; text-decoration: none; margin-top: auto; transition: opacity 0.2s; }
.nh-blog__read-more:hover { opacity: 0.7; }
.nh-blog__tag { display: inline-block; color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 50px; margin-bottom: 0.5rem; width: fit-content; }
@media (max-width: 768px) { .nh-blog__grid { grid-template-columns: 1fr; } }
/* END_SECTION:nh-blog-highlights */

/* START_SECTION:nh-category-cards (INDEX:53) */
.nh-cats { width: 100%; padding-block: 3.5rem; }
.nh-cats__inner { max-width: 1280px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 4rem); text-align: center; }
.nh-cats__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 0 0 0.5rem;  }
.nh-cats__sub { font-size: 1rem; margin: 0 0 2rem; opacity: 0.75; }
.nh-cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.nh-cats__card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(196,123,133,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.nh-cats__card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(196,123,133,0.15); }
.nh-cats__card-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.nh-cats__card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.nh-cats__card:hover .nh-cats__card-img { transform: scale(1.05); }
.nh-cats__badge { position: absolute; top: 0.75rem; left: 0.75rem; color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.3rem 0.7rem; border-radius: 50px; z-index: 2; }
.nh-cats__card-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; background: #f5f5f5; }
.nh-cats__card-body { padding: 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; text-align: center; }
.nh-cats__card-title { font-size: 1.1rem; font-weight: 700; margin: 0;  }
.nh-cats__card-desc { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.4; }
.nh-cats__card-btn { display: inline-block; font-size: 0.8rem; font-weight: 700; border: 1.5px solid; border-radius: 50px; padding: 0.5rem 1.25rem; text-decoration: none; transition: background 0.2s, color 0.2s; margin-top: 0.25rem; align-self: center; }
.nh-cats__card-btn:hover { background: #C47B85; color: #fff !important; border-color: #C47B85; }
.nh-cats__banner { display: flex; align-items: center; gap: 1.5rem; border-radius: 16px; padding: 1.5rem 2rem; margin-top: 2rem; flex-wrap: wrap; }
.nh-cats__banner-icon { font-size: 2.5rem; flex-shrink: 0; }
.nh-cats__banner-text { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; text-align: left; }
.nh-cats__banner-text strong { font-size: 1.1rem; }
.nh-cats__banner-text span { font-size: 0.85rem; }
.nh-cats__banner-btn { display: inline-block; font-size: 0.85rem; font-weight: 700; padding: 0.65rem 1.5rem; border-radius: 50px; text-decoration: none; flex-shrink: 0; transition: opacity 0.2s; }
.nh-cats__banner-btn:hover { opacity: 0.85; }
@media (max-width: 768px) { .nh-cats__grid { grid-template-columns: repeat(2, 1fr); } .nh-cats__banner { flex-direction: column; text-align: center; } .nh-cats__banner-text { text-align: center; } }
@media (max-width: 480px) { .nh-cats__grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; } .nh-cats__card-body { padding: 1rem; } }
/* END_SECTION:nh-category-cards */

/* START_SECTION:nh-hero-banner (INDEX:54) */
.nh-hero {
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.nh-hero__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  padding-block: clamp(3rem, 8vh, 5rem);
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
  box-sizing: border-box;
}
.nh-hero__content {
  flex: 1 1 50%;
  max-width: 560px;
}
.nh-hero__heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nh-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  margin: 0 0 2rem;
  opacity: 0.85;
}
.nh-hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.nh-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.nh-hero__btn--outline {
  background: #ffffff;
  border: 2px solid #C47B85;
  color: #C47B85;
}
.nh-hero__btn--outline:hover {
  background: #C47B85;
  color: #ffffff;
}
.nh-hero__btn--filled {
  background: #E89292;
  border: 2px solid #E89292;
  color: #ffffff;
}
.nh-hero__btn--filled:hover {
  background: #C47B85;
  border-color: #C47B85;
}
.nh-hero__media {
  flex: 1 1 40%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.nh-hero__deco-circle {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(196,123,133,0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.nh-hero__img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  drop-shadow: 0 8px 32px rgba(196,123,133,0.25);
  filter: drop-shadow(0 8px 24px rgba(196,123,133,0.3));
}
.nh-hero__placeholder {
  position: relative;
  z-index: 1;
  width: 280px;
  height: 320px;
  background: rgba(255,228,232,0.6);
  border-radius: 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border: 2px dashed #C47B85;
}
.nh-hero__placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .nh-hero {
    min-height: auto;
  }
  .nh-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .nh-hero__content {
    max-width: 100%;
  }
  .nh-hero__btns {
    justify-content: center;
  }
  .nh-hero__media {
    min-height: 260px;
    width: 100%;
  }
  .nh-hero__deco-circle {
    width: 260px;
    height: 260px;
  }
}
/* END_SECTION:nh-hero-banner */

/* START_SECTION:nh-instagram (INDEX:55) */
.nh-ig { width: 100%; padding-block: 3rem; }
.nh-ig__inner { max-width: 1280px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 4rem); text-align: center; }
.nh-ig__header { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.nh-ig__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 0;  }
.nh-ig__desc { margin: 0 0 2rem; font-size: 0.95rem; opacity: 0.75; }
.nh-ig__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.nh-ig__cell { aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; background-size: cover; background-position: center; position: relative; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.nh-ig__cell:hover { transform: scale(1.03); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }
.nh-ig__overlay { position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(0,0,0,0.5)); display: flex; flex-direction: column; justify-content: flex-end; padding: 0.75rem; opacity: 0; transition: opacity 0.3s; }
.nh-ig__cell:hover .nh-ig__overlay { opacity: 1; }
.nh-ig__stars { color: #FFB830; font-size: 0.8rem; }
.nh-ig__name { color: #fff; font-size: 0.7rem; margin-top: 0.25rem; }
.nh-ig__loading { background: #f5f5f5; display: flex; align-items: center; justify-content: center; }
.nh-ig__spinner { width: 24px; height: 24px; border: 3px solid #ddd; border-top-color: #C47B85; border-radius: 50%; animation: nh-ig-spin 0.8s linear infinite; }
@keyframes nh-ig-spin { to { transform: rotate(360deg); } }
.nh-ig__placeholder { background: #f0f0f0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; border: 2px dashed #ddd; border-radius: 12px; }
.nh-ig__cam { font-size: 1.5rem; }
.nh-ig__tag { font-size: 0.7rem; color: #999; margin: 0; }
.nh-ig__social{text-align:center;padding:1.5rem 0 0}
.nh-ig__social-label{font-size:.85rem;font-weight:600;color:{{ section.settings.title_color | default: '#C47B85' }};margin:0 0 .75rem;font-family:var(--typeHeaderFont,inherit)}
.nh-ig__social-links{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap}
.nh-ig__social-link{font-size:.85rem;color:{{ section.settings.text_color | default: '#3D2B1F' }};text-decoration:none;background:rgba(255,255,255,.7);padding:.55rem 1.2rem;border-radius:50px;transition:transform .2s,background .2s,color .2s}
.nh-ig__social-link:hover{transform:translateY(-2px);background:#3D2B1F;color:#fff!important}
.nh-ig__social-handle{font-size:.8rem;color:{{ section.settings.title_color | default: '#C47B85' }};font-weight:600;margin:.75rem 0 0}
@media (max-width: 600px) { .nh-ig__grid { grid-template-columns: repeat(2, 1fr); } }
/* END_SECTION:nh-instagram */

/* START_SECTION:nh-newsletter-trust (INDEX:56) */
.nh-nl {
  width: 100%;
  padding-block: 3rem;
}
.nh-nl__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.nh-nl__trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem;
  background: rgba(255,255,255,0.6);
  border-radius: 16px;
}
.nh-nl__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.nh-nl__trust-icon {
  font-size: 1.1rem;
}
.nh-nl__trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(196,123,133,0.3);
  flex-shrink: 0;
}
.nh-nl__newsletter {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.nh-nl__nl-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
}
.nh-nl__nl-sub {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.75;
}
.nh-nl__form {
  width: 100%;
  max-width: 560px;
}
.nh-nl__input-wrap {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.nh-nl__input {
  flex: 1 1 220px;
  padding: 0.75rem 1.25rem;
  border: 2px solid #E89292;
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  color: #3D2B1F;
}
.nh-nl__input:focus {
  border-color: #C47B85;
}
.nh-nl__btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nh-nl__btn:hover { opacity: 0.85; }
.nh-nl__success {
  margin-top: 0.75rem;
  color: #5a8a5a;
  font-size: 0.9rem;
}
.nh-nl__social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.nh-nl__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nh-nl__social:hover {
  opacity: 0.8;
  transform: scale(1.1);
}
@media (max-width: 640px) {
  .nh-nl__trust-divider {
    display: none;
  }
  .nh-nl__trust-item {
    flex: 1 1 120px;
    text-align: center;
    flex-direction: column;
  }
}
/* END_SECTION:nh-newsletter-trust */

/* START_SECTION:nh-usp-bar (INDEX:57) */
.nh-usp {
  width: 100%;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(196,123,133,0.2);
  border-bottom: 1px solid rgba(196,123,133,0.2);
}
.nh-usp__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}
.nh-usp__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 180px;
  min-width: 160px;
}
.nh-usp__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nh-usp__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.nh-usp__desc {
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.75;
}
.nh-usp__divider {
  width: 1px;
  height: 40px;
  background: rgba(196,123,133,0.3);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .nh-usp__inner {
    gap: 1.5rem;
  }
  .nh-usp__divider {
    display: none;
  }
  .nh-usp__item {
    flex: 1 1 140px;
  }
}
/* END_SECTION:nh-usp-bar */

/* START_SECTION:nh-wardrobe-builder (INDEX:58) */
.nh-wb{width:100%;padding:3rem 0 4rem;position:relative;overflow:hidden}
.nh-wb__decor{text-align:center;font-size:.85rem;color:rgba(196,123,133,.12);letter-spacing:.5rem;margin-bottom:1.5rem;user-select:none}
.nh-wb__inner{max-width:1280px;margin-inline:auto;padding-inline:clamp(1rem,5vw,4rem)}
.nh-wb__head{text-align:center;margin-bottom:2rem}
.nh-wb__heart{display:block;font-size:1.2rem;color:{{ accent | default: '#C47B85' }};margin-bottom:.25rem}
.nh-wb__title{font-size:clamp(1.5rem,4vw,2.2rem);font-weight:700;margin:0;font-family:var(--typeHeaderFont,inherit)}
.nh-wb__sub{font-size:1rem;margin:.4rem 0 0;font-family:var(--typeHeaderFont,inherit);font-style:italic}
.nh-wb__card{display:flex;gap:0;background:#fff;border-radius:20px;overflow:hidden;min-height:560px}
.nh-wb__hero{flex-shrink:0;width:35%;position:relative}
.nh-wb__hero img{width:100%;height:100%;object-fit:cover;display:block}
.nh-wb__hero-ph{height:100%;min-height:400px;display:flex;align-items:center;justify-content:center;font-size:5rem;background:#f5f5f5}
.nh-wb__hero-badge{position:absolute;bottom:1rem;left:1rem;font-size:.7rem;font-weight:600;padding:.35rem .75rem;border-radius:50px}
.nh-wb__panel{flex:1;display:flex;flex-direction:column;padding:1.5rem;gap:1rem}
.nh-wb__grid{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;flex:1;align-content:center}
.nh-wb__step{position:relative;border-radius:14px;overflow:hidden;display:block;text-decoration:none;aspect-ratio:1;transition:transform .3s ease,box-shadow .3s ease}
.nh-wb__step-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
.nh-wb__step-bg-fallback{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-size:4rem;background:#f5f5f5}
.nh-wb__step-badge-wrap{position:absolute;top:.5rem;left:.5rem;z-index:2}
.nh-wb__step-num{width:30px;height:30px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;font-size:.85rem;font-weight:700}
.nh-wb__step-name{font-size:.75rem;font-weight:600;color:#2D2D2D;background:rgba(255,255,255,.85);padding:2px 8px;border-radius:4px}


.nh-wb__cta-wrap{text-align:center}
.nh-wb__cta{display:inline-block;font-size:1rem;font-weight:700;padding:.8rem 2.5rem;border-radius:50px;text-decoration:none;transition:opacity .2s,transform .2s}
.nh-wb__cta:hover{opacity:.9;transform:scale(1.02)}
.nh-wb__step:hover{transform:scale(1.03);box-shadow:0 8px 28px rgba(0,0,0,.12)}
.nh-wb__step:hover .nh-wb__step-bg{transform:scale(1.06)}
@media(max-width:900px){.nh-wb__card{flex-direction:column}.nh-wb__hero{width:100%;max-height:350px}.nh-wb__panel{padding:1rem}.nh-wb__grid{gap:.5rem}}
/* END_SECTION:nh-wardrobe-builder */