.nf-wholesale-home{
  background:#f2f2f2;
  color:#232323;
}

/* FULLSCREEN HERO VIDEO */
.nf-hero-video{
  position:relative;
  min-height:100svh;
  overflow:hidden;
  background:#120304;
}

.nf-hero-video__media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  transform:scale(1.02);
  filter:saturate(.96) contrast(1.02);
}

.nf-hero-video__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(56,0,0,.36) 0%, rgba(111,8,16,.46) 34%, rgba(20,0,0,.64) 100%),
    linear-gradient(90deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.06) 35%, rgba(0,0,0,.18) 100%);
}

.nf-hero-video__inner{
  position:relative;
  z-index:2;
  min-height:100svh;
  padding-top:28px;
  padding-bottom:24px;
  display:flex;
  flex-direction:column;
}

/* TOP UTILITY BAR */
.nf-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding-bottom:18px;
}

.nf-topbar__left{
  display:flex;
  align-items:center;
  gap:12px;
}

.nf-topbar__lang{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border:2px solid rgba(255,255,255,.84);
  border-radius:999px;
  text-decoration:none;
  color:#fff;
  background:rgba(255,255,255,.06);
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:background .22s ease, color .22s ease, transform .22s ease, border-color .22s ease;
}

.nf-topbar__lang:hover,
.nf-topbar__lang.is-active{
  background:#fff;
  color:#8b0b12;
  border-color:#fff;
  transform:translateY(-1px);
}

.nf-topbar__search{
  display:flex;
  align-items:center;
  width:min(360px, 100%);
  border:2px solid rgba(255,255,255,.82);
  border-radius:999px;
  overflow:hidden;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(6px);
}

.nf-topbar__search-input{
  width:100%;
  min-height:42px;
  border:none;
  outline:none;
  background:transparent;
  color:#fff;
  padding:0 16px;
  font-size:.84rem;
  text-transform:uppercase;
}

.nf-topbar__search-input::placeholder{
  color:rgba(255,255,255,.88);
}

.nf-topbar__search-btn{
  min-width:48px;
  min-height:42px;
  border:none;
  background:transparent;
  color:#fff;
  font-size:1rem;
  cursor:pointer;
}

/* MAIN HERO BRAND BLOCK */
.nf-hero-brand{
  display:grid;
  grid-template-columns:220px minmax(0, 1fr);
  align-items:center;
  gap:36px;
  margin-top:42px;
  padding:54px 0 30px;
  border-top:2px solid rgba(255,255,255,.74);
  border-bottom:2px solid rgba(255,255,255,.74);
  transition:transform .18s ease;
}

.nf-hero-brand__logo{
  width:100%;
  max-width:210px;
  display:block;
  margin:0 auto;
  filter:drop-shadow(0 18px 40px rgba(0,0,0,.24));
}

.nf-hero-brand__copy{
  color:#fff;
}

.nf-hero-brand__eyebrow{
  margin-bottom:14px;
  color:rgba(255,255,255,.84);
  font-size:.84rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.nf-hero-brand__title{
  margin:0 0 16px;
  max-width:820px;
  font-size:clamp(2.4rem, 4vw, 4.6rem);
  line-height:.95;
  font-weight:900;
  letter-spacing:-.05em;
  color:#fff;
}

.nf-hero-brand__text{
  max-width:760px;
  margin:0;
  color:rgba(255,255,255,.9);
  font-size:1.04rem;
  line-height:1.72;
}

.nf-hero-brand__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

/* GLOBAL BUTTONS */
.nf-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:999px;
  border:2px solid transparent;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.02em;
  transition:transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.nf-btn:hover{
  transform:translateY(-2px);
}

.nf-btn--primary{
  background:#fff;
  color:#920c13;
  box-shadow:0 14px 34px rgba(0,0,0,.16);
}

.nf-btn--ghost{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.84);
}

/* MAIN TABS */
.nf-main-tabs{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:1px;
  margin-top:auto;
  padding-top:22px;
}

.nf-main-tabs__item{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 12px;
  background:rgba(138, 12, 18, .92);
  color:#fff;
  text-decoration:none;
  font-size:.88rem;
  font-weight:900;
  text-transform:uppercase;
  transition:background .22s ease, color .22s ease;
}

.nf-main-tabs__item:hover,
.nf-main-tabs__item.is-active{
  background:#fff;
  color:#8b0b12;
}

/* MEGA ASSORTMENT PANEL */
.nf-mega-assortment{
  position:relative;
  z-index:3;
  background:#efefef;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
}

.nf-mega-assortment__panel{
  padding:18px 22px 22px;
  background:#efefef;
}

.nf-mega-assortment__grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:28px;
}

.nf-mega-col{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.nf-mega-col__title{
  margin-bottom:12px;
  padding-bottom:10px;
  border-bottom:2px solid #d6d6d6;
  color:#1f1f1f;
  font-size:.9rem;
  font-weight:900;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.nf-mega-col__title--accent{
  color:#d51a1a;
}

.nf-mega-col a{
  color:#4e4e4e;
  text-decoration:none;
  font-size:.98rem;
  line-height:1.35;
  transition:color .18s ease, transform .18s ease;
}

.nf-mega-col a:hover{
  color:#b30f17;
  transform:translateX(2px);
}

.nf-direct-order{
  color:#d51a1a !important;
  font-weight:900;
}

/* INTRO STRIP */
.nf-intro-strip{
  background:#ffffff;
  padding:54px 0;
}

.nf-intro-strip__inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
}

.nf-intro-strip__copy{
  max-width:840px;
}

.nf-intro-strip__copy h2{
  margin:0 0 14px;
  font-size:clamp(1.8rem, 3vw, 2.9rem);
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.03em;
}

.nf-intro-strip__copy p{
  margin:0;
  color:#5c5c5c;
  line-height:1.74;
  font-size:1rem;
}

.nf-intro-strip__action{
  flex:0 0 auto;
}

/* KICKER */
.nf-section-kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#8c0b12;
}

.nf-section-kicker--light{
  color:rgba(255,255,255,.76);
}

.nf-link-arrow{
  color:#8c0b12;
  text-decoration:none;
  font-weight:800;
  white-space:nowrap;
}

/* USP RED STRIP */
.nf-usp-strip{
  background:#ef1d25;
  color:#fff;
}

.nf-usp-strip__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
  padding:18px 0;
}

.nf-usp-item{
  display:flex;
  align-items:center;
  gap:16px;
}

.nf-usp-item__icon{
  width:50px;
  height:50px;
  flex:0 0 auto;
  border-radius:50%;
  background:rgba(0,0,0,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.35rem;
  font-weight:900;
}

.nf-usp-item__text strong{
  display:block;
  margin-bottom:4px;
  font-size:1rem;
  font-weight:900;
  text-transform:uppercase;
}

.nf-usp-item__text span{
  display:block;
  color:rgba(255,255,255,.86);
  font-size:.9rem;
  line-height:1.45;
}

/* GENERIC HEAD */
.nf-showcase__head{
  max-width:860px;
  margin-bottom:26px;
}

.nf-showcase__head h2{
  margin:0 0 12px;
  font-size:clamp(1.9rem, 3vw, 3rem);
  line-height:1.06;
  font-weight:900;
  letter-spacing:-.03em;
}

.nf-showcase__head p{
  margin:0;
  color:#5a5a5a;
  line-height:1.72;
  font-size:1rem;
}

/* SHOWCASE */
.nf-showcase{
  padding:54px 0;
  background:#f2f2f2;
}

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

.nf-category-tile{
  position:relative;
  overflow:hidden;
  min-height:180px;
  display:flex;
  align-items:flex-end;
  padding:18px 22px;
  text-decoration:none;
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.10);
  transition:transform .22s ease, filter .22s ease;
}

.nf-category-tile::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(0,0,0,.38) 100%);
}

.nf-category-tile span{
  position:relative;
  z-index:2;
  font-size:2rem;
  font-weight:300;
  letter-spacing:.01em;
}

.nf-category-tile:hover{
  transform:translateY(-3px);
  filter:saturate(1.08);
}

.nf-category-tile--dark{ background:linear-gradient(135deg, #4d3525 0%, #241713 100%); }
.nf-category-tile--olive{ background:linear-gradient(135deg, #8c8859 0%, #54512d 100%); }
.nf-category-tile--red{ background:linear-gradient(135deg, #9f2025 0%, #631317 100%); }
.nf-category-tile--blue{ background:linear-gradient(135deg, #0f4e84 0%, #0b2c48 100%); }
.nf-category-tile--gold{ background:linear-gradient(135deg, #8c6d2e 0%, #55401d 100%); }
.nf-category-tile--green{ background:linear-gradient(135deg, #2d7d45 0%, #1c4929 100%); }

/* FEATURED PRODUCTS */
.nf-featured-products{
  padding:54px 0;
  background:#fff;
}

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

.nf-product-card{
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
  background:#fff;
  border:1px solid #e3e3e3;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.nf-product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(0,0,0,.10);
  border-color:#d4d4d4;
}

.nf-product-card__link{
  position:absolute;
  inset:0;
  z-index:3;
}

.nf-product-card__media{
  aspect-ratio:1.25 / 1;
  background:#f5f5f5;
  overflow:hidden;
}

.nf-product-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.nf-product-card__body{
  position:relative;
  z-index:2;
  padding:18px 18px 20px;
}

.nf-product-card__topline{
  margin-bottom:10px;
}

.nf-product-card__chip{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:#efefef;
  color:#5a5a5a;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.nf-product-card h3{
  margin:0 0 10px;
  font-size:1.16rem;
  font-weight:900;
  line-height:1.32;
  color:#1f1f1f;
}

.nf-product-card p{
  margin:0;
  min-height:52px;
  color:#5f5f5f;
  font-size:.95rem;
  line-height:1.6;
}

.nf-product-card__price{
  margin-top:14px;
}

.nf-product-card__price-wrap{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:10px;
}

.nf-product-card__price-value{
  font-size:1.16rem;
  font-weight:900;
  color:#8c0b12;
}

.nf-product-card__price-original{
  font-size:.95rem;
  color:#8b8b8b;
  text-decoration:line-through;
}

.nf-product-card__more{
  display:inline-block;
  margin-top:14px;
  color:#8c0b12;
  font-weight:800;
}

.nf-empty-card{
  padding:24px;
  background:#fff;
  border:1px solid #e0e0e0;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  color:#575757;
}

/* GROWTH STATS */
.nf-growth-stats{
  padding:54px 0;
  background:#2b2b2b;
}

.nf-growth-stats__panel{
  padding:30px;
  background:linear-gradient(135deg, #343434 0%, #1f1f1f 100%);
  color:#fff;
  box-shadow:0 20px 44px rgba(0,0,0,.18);
}

.nf-growth-stats__panel h2{
  margin:0 0 12px;
  font-size:clamp(1.8rem, 3vw, 2.6rem);
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.03em;
}

.nf-growth-stats__panel p{
  margin:0;
  color:rgba(255,255,255,.84);
  line-height:1.7;
}

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

.nf-stat-box{
  padding:20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

.nf-stat-box strong{
  display:block;
  margin-bottom:8px;
  font-size:1.7rem;
  font-weight:900;
  line-height:1;
}

.nf-stat-box span{
  display:block;
  color:rgba(255,255,255,.78);
  font-size:.93rem;
  line-height:1.45;
}

/* NEWS */
.nf-news{
  padding:54px 0;
  background:#f7f7f7;
}

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

.nf-news-card{
  padding:22px;
  background:#fff;
  border:1px solid #e2e2e2;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}

.nf-news-card__date{
  margin-bottom:10px;
  color:#8c0b12;
  font-size:.85rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.nf-news-card h3{
  margin:0 0 12px;
  font-size:1.15rem;
  font-weight:900;
  line-height:1.34;
}

.nf-news-card p{
  margin:0 0 14px;
  color:#5d5d5d;
  line-height:1.65;
}

/* CONTACT */
.nf-contact-panel{
  padding:54px 0;
  background:#ffffff;
}

.nf-contact-panel__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:28px;
  background:#141414;
  color:#fff;
  box-shadow:0 20px 40px rgba(0,0,0,.16);
}

.nf-contact-panel__inner h2{
  margin:0 0 10px;
  font-size:2rem;
  font-weight:900;
  letter-spacing:-.03em;
}

.nf-contact-panel__inner p{
  color:rgba(255,255,255,.82);
  line-height:1.7;
}

.nf-contact-panel__actions{
  flex:0 0 auto;
}

/* REVEAL */
.nf-wholesale-home [data-nf-reveal]{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .72s ease, transform .72s ease;
}

.nf-wholesale-home [data-nf-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1399.98px){
  .nf-main-tabs__item{
    font-size:.82rem;
  }
}

@media (max-width: 1199.98px){
  .nf-hero-brand{
    grid-template-columns:180px minmax(0, 1fr);
  }

  .nf-mega-assortment__grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .nf-category-tiles,
  .nf-product-grid,
  .nf-news-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 991.98px){
  .nf-hero-video,
  .nf-hero-video__inner{
    min-height:auto;
  }

  .nf-topbar{
    flex-direction:column;
    align-items:stretch;
  }

  .nf-topbar__search{
    width:100%;
  }

  .nf-hero-brand{
    grid-template-columns:1fr;
    text-align:center;
    gap:24px;
    padding:34px 0 24px;
    margin-top:26px;
  }

  .nf-hero-brand__logo{
    max-width:180px;
  }

  .nf-hero-brand__text{
    margin-inline:auto;
  }

  .nf-hero-brand__actions{
    justify-content:center;
  }

  .nf-main-tabs{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .nf-intro-strip__inner,
  .nf-contact-panel__inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 767.98px){
  .nf-hero-video__inner{
    padding-top:20px;
  }

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

  .nf-mega-assortment__grid,
  .nf-category-tiles,
  .nf-product-grid,
  .nf-stat-grid,
  .nf-news-grid,
  .nf-usp-strip__grid{
    grid-template-columns:1fr;
  }

  .nf-mega-assortment__panel,
  .nf-growth-stats__panel,
  .nf-contact-panel__inner{
    padding:20px;
  }

  .nf-category-tile{
    min-height:150px;
  }

  .nf-category-tile span{
    font-size:1.6rem;
  }

  .nf-hero-brand__title{
    font-size:clamp(1.9rem, 10vw, 2.9rem);
  }

  .nf-btn{
    width:100%;
  }

  .nf-hero-brand__actions{
    flex-direction:column;
  }
}

/* THEME SAFE INDEX OVERRIDES */
:root[data-theme="light"] .nf-wholesale-home{
  background:var(--bg) !important;
  color:var(--fg) !important;
}

:root[data-theme="light"] .nf-mega-assortment,
:root[data-theme="light"] .nf-mega-assortment__panel,
:root[data-theme="light"] .nf-showcase,
:root[data-theme="light"] .nf-news{
  background:var(--surface-2) !important;
}

:root[data-theme="light"] .nf-intro-strip,
:root[data-theme="light"] .nf-featured-products,
:root[data-theme="light"] .nf-contact-panel{
  background:var(--surface) !important;
}

:root[data-theme="light"] .nf-mega-col__title,
:root[data-theme="light"] .nf-intro-strip__copy h2,
:root[data-theme="light"] .nf-showcase__head h2,
:root[data-theme="light"] .nf-product-card h3,
:root[data-theme="light"] .nf-news-card h3,
:root[data-theme="light"] .nf-growth-stats__panel h2,
:root[data-theme="light"] .nf-contact-panel__inner h2{
  color:var(--fg) !important;
}

:root[data-theme="light"] .nf-mega-col a,
:root[data-theme="light"] .nf-intro-strip__copy p,
:root[data-theme="light"] .nf-showcase__head p,
:root[data-theme="light"] .nf-product-card p,
:root[data-theme="light"] .nf-news-card p,
:root[data-theme="light"] .nf-empty-card,
:root[data-theme="light"] .nf-contact-panel__inner p{
  color:var(--muted) !important;
}

:root[data-theme="light"] .nf-mega-col__title{
  border-bottom-color:var(--border) !important;
}

:root[data-theme="light"] .nf-product-card,
:root[data-theme="light"] .nf-news-card,
:root[data-theme="light"] .nf-empty-card{
  background:var(--surface) !important;
  border:1px solid var(--border) !important;
  box-shadow:0 10px 24px rgba(15,23,42,.06) !important;
}

:root[data-theme="light"] .nf-product-card__chip{
  background:var(--surface-2) !important;
  color:var(--muted) !important;
}

:root[data-theme="light"] .nf-growth-stats{
  background:var(--surface-2) !important;
}

:root[data-theme="light"] .nf-growth-stats__panel{
  background:var(--surface) !important;
  color:var(--fg) !important;
  border:1px solid var(--border) !important;
  box-shadow:0 20px 44px rgba(15,23,42,.08) !important;
}

:root[data-theme="light"] .nf-growth-stats__panel p,
:root[data-theme="light"] .nf-stat-box span{
  color:var(--muted) !important;
}

:root[data-theme="light"] .nf-stat-box{
  background:var(--surface-2) !important;
  border:1px solid var(--border) !important;
}

:root[data-theme="light"] .nf-section-kicker--light{
  color:var(--muted) !important;
}

:root[data-theme="light"] .nf-contact-panel__inner{
  background:var(--surface-2) !important;
  color:var(--fg) !important;
  border:1px solid var(--border) !important;
  box-shadow:0 20px 40px rgba(15,23,42,.08) !important;
}

:root[data-theme="dark"] .nf-wholesale-home{
  background:var(--bg) !important;
  color:var(--fg) !important;
}

:root[data-theme="dark"] .nf-mega-assortment,
:root[data-theme="dark"] .nf-mega-assortment__panel,
:root[data-theme="dark"] .nf-showcase,
:root[data-theme="dark"] .nf-news{
  background:var(--surface-2) !important;
}

:root[data-theme="dark"] .nf-intro-strip,
:root[data-theme="dark"] .nf-featured-products,
:root[data-theme="dark"] .nf-contact-panel{
  background:var(--surface) !important;
}

:root[data-theme="dark"] .nf-mega-col__title,
:root[data-theme="dark"] .nf-intro-strip__copy h2,
:root[data-theme="dark"] .nf-showcase__head h2,
:root[data-theme="dark"] .nf-product-card h3,
:root[data-theme="dark"] .nf-news-card h3,
:root[data-theme="dark"] .nf-growth-stats__panel h2,
:root[data-theme="dark"] .nf-contact-panel__inner h2{
  color:var(--fg) !important;
}

:root[data-theme="dark"] .nf-mega-col a,
:root[data-theme="dark"] .nf-intro-strip__copy p,
:root[data-theme="dark"] .nf-showcase__head p,
:root[data-theme="dark"] .nf-product-card p,
:root[data-theme="dark"] .nf-news-card p,
:root[data-theme="dark"] .nf-empty-card,
:root[data-theme="dark"] .nf-contact-panel__inner p{
  color:var(--muted) !important;
}

:root[data-theme="dark"] .nf-mega-col__title{
  border-bottom-color:var(--border) !important;
}

:root[data-theme="dark"] .nf-product-card,
:root[data-theme="dark"] .nf-news-card,
:root[data-theme="dark"] .nf-empty-card{
  background:var(--surface) !important;
  border:1px solid var(--border) !important;
  box-shadow:0 10px 24px rgba(0,0,0,.20) !important;
}

:root[data-theme="dark"] .nf-product-card__chip{
  background:var(--surface-2) !important;
  color:var(--muted) !important;
}

:root[data-theme="dark"] .nf-growth-stats{
  background:var(--surface-2) !important;
}

:root[data-theme="dark"] .nf-growth-stats__panel{
  background:linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%) !important;
  color:var(--fg) !important;
  border:1px solid var(--border) !important;
  box-shadow:0 20px 44px rgba(0,0,0,.24) !important;
}

:root[data-theme="dark"] .nf-growth-stats__panel p,
:root[data-theme="dark"] .nf-stat-box span{
  color:var(--muted) !important;
}

:root[data-theme="dark"] .nf-stat-box{
  background:rgba(255,255,255,.04) !important;
  border:1px solid var(--border) !important;
}

:root[data-theme="dark"] .nf-section-kicker--light{
  color:var(--muted) !important;
}

:root[data-theme="dark"] .nf-contact-panel__inner{
  background:linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%) !important;
  color:var(--fg) !important;
  border:1px solid var(--border) !important;
  box-shadow:0 20px 40px rgba(0,0,0,.24) !important;
}
