/**
Theme Name: Astra Custom for Norhage
Author: Daiva Reinike
Description: Child theme for Norhage site customizations
Version: 1.0.0
Text Domain: astra-custom-for-norhage
Template: astra
*/

/* =========================================================
   0) TOKENS & BASICS
   ========================================================= */
:root{
  --nh-green:      #00704A; /* Primary / CTAs / links */
  --nh-forest:     #1E3932; /* Deep headers / footer / active */
  --nh-brown:      #4B2C20; /* Accent deep */
  --nh-cream:      #F1E6D6; /* Section bg */
  --nh-offwhite:   #FAF7F2; /* Site bg */
  --nh-charcoal:   #2C2A29; /* Text */
  --nh-mint:       #C3E8C6; /* Soft border/hover */
  --nh-gold:       #C89F63; /* Premium accent (sparingly) */

  /* UI helpers */
  --ui-text:       var(--nh-charcoal);
  --ui-muted:      #8e8c89;
  --ui-border:     var(--nh-mint);
  --ui-bg-dark:    var(--nh-forest);
  --ui-bg-primary: var(--nh-green);
  --ui-bg-soft:    var(--nh-cream);
  --ui-bg-site:    var(--nh-offwhite);
  --ui-bg-content: #ffffff;

  /* Pagination tokens */
  --pg-text:   var(--ui-text);
  --pg-muted:  var(--ui-muted);
  --pg-green:  var(--nh-green);
  --pg-cream:  var(--nh-cream);
  --pg-forest: var(--nh-forest);
}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  background:var(--ui-bg-site);
  color:var(--ui-text);
  overflow-x:hidden;
}

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

/* =========================================================
   1) GREEN SEPARATOR
   ========================================================= */
hr.wp-block-separator,
hr.nh-sep{
  border: 0 !important;
  height: 0 !important;
  border-top: 3px solid var(--nh-forest, #1E3932) !important;
  width: 220px !important;
  margin: 42px auto 34px !important;
  border-radius: 3px;
  opacity: .9;
  background: none !important;
}

/* Optional variants */
hr.nh-sep--wide   { width: 280px !important; }
hr.nh-sep--compact{ width: 140px !important; margin: 28px auto !important; }
hr.nh-sep--accent { border-top-color: var(--nh-green,#00704A) !important; border-top-width: 4px !important; }

/* =========================================================
   HOME HERO SLIDER
   ========================================================= */

.nhhb-hero--home.nhhb-hero-slider{
  display: block;
  min-height: clamp(320px, 46vh, 520px);
  position: relative;
  overflow: hidden;
  background: var(--ui-bg-dark);
  text-align: left;
}

.nhhb-hero-slider::after{
  display: none;
}

.nhhb-hero-slider__slides{
  position: relative;
  width: 100%;
  min-height: inherit;
}

.nhhb-hero-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  display: grid;
  align-items: center;
  min-height: inherit;
  background-color: var(--ui-bg-dark);
  background-image: var(--nhhb-hero-bg, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}

.nhhb-hero-slide::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.56) 0%,
    rgba(0,0,0,.38) 40%,
    rgba(0,0,0,.28) 100%
  );
}

.nhhb-hero-slide.is-active{
  position: relative;
  opacity: 1;
  visibility: visible;
}

.nhhb-hero-slider .nhhb-hero__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 76px) 24px clamp(56px, 8vw, 90px);
  text-align: left;
}

.nhhb-hero-slider .nhhb-hero__title{
  margin: 0 0 14px;
  max-width: 14ch;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.1;
  color: #fff;
}

.nhhb-hero-slider .nhhb-hero__subtitle{
  margin: 0;
  max-width: 58ch;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  color: #f4f6f5;
}

.nhhb-hero-slider__controls{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
}

.nhhb-hero-slider__arrow{
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(30,57,50,.45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.nhhb-hero-slider__arrow:hover{
  background: rgba(30,57,50,.65);
}

.nhhb-hero-slider__arrow span{
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}

.nhhb-hero-slider__dots{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 auto;
}

.nhhb-hero-slider__dot{
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
}

.nhhb-hero-slider__dot.is-active{
  background: #fff;
  transform: scale(1.15);
}

@media (max-width: 768px){
  .nhhb-hero--home.nhhb-hero-slider{
    min-height: clamp(260px, 38vh, 360px);
  }

  .nhhb-hero-slider .nhhb-hero__inner{
    padding: 36px 18px 68px;
  }

  .nhhb-hero-slider .nhhb-hero__title{
    max-width: none;
    font-size: clamp(24px, 7vw, 34px);
  }

  .nhhb-hero-slider .nhhb-hero__subtitle{
    font-size: 15px;
  }

  .nhhb-hero-slider__controls{
    bottom: 14px;
    padding: 0 18px;
  }

  .nhhb-hero-slider__arrow{
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   3) BLOG + SERVICES — archives & single
   ========================================================= */

/* ---------- Archive card shell ---------- */
.ast-article-post .ast-article-inner{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:4px;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  overflow:hidden;
}

/* Thumbnails (square, fully covered) */
.ast-article-post .post-thumb,
.ast-article-post .post-thumb-img-content{
  aspect-ratio:1 / 1;
  overflow:hidden;
}

.ast-article-post .post-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Content column spacing */
.ast-article-post .post-content{
  padding:18px 18px 16px;
}

/* Titles */
.ast-article-post .entry-title a{
  color:var(--nh-forest,#1E3932);
  text-decoration:none;
}

.ast-article-post .entry-title a:hover{
  opacity:.85;
}

/* Blog taxonomy chip */
.ast-taxonomy-container a{
  display:inline-block;
  margin-bottom:6px;
  padding:4px 8px;
  border-radius:4px;
  font-size:.85rem;
  background:#F4F3F1;
  border:1px solid rgba(0,0,0,.08);
  color:var(--nh-forest,#1E3932);
  text-decoration:none;
}

/* Excerpt spacing */
.ast-excerpt-container p{
  margin:8px 0 0;
}

/* SINGLE POST: remove "By admin /" but keep the date */
.single-post .entry-header .entry-meta{
  font-size: 0 !important;
  line-height: 0 !important;
}

.single-post .entry-header .entry-meta .posted-by{
  display: none !important;
}

.single-post .entry-header .entry-meta .posted-on,
.single-post .entry-header .entry-meta .posted-on *{
  font-size: 14px !important;
  line-height: 1.2 !important;
}

.single-post .entry-header .entry-meta .ast-meta-separator{
  display:none !important;
}

/* ---------- Read more link (no extra arrow) ---------- */
.ast-read-more-container a{
  --rm: var(--nh-green,#00704A);
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:0;
  background:none;
  border:none;
  color:var(--rm);
  font-weight:600;
  text-decoration:none;
}

.ast-read-more-container a:hover{
  opacity:.85;
}

.ast-read-more-container a::after{
  content:none;
}

/* ---------- Blog category pills ---------- */
.blog-category-nav{
  margin:18px 0 26px;
}

.blog-category-nav ul{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  list-style:none;
  margin:0;
  padding:0;
}

.blog-category-nav a{
  --pill-bg:#F4F3F1;
  --pill-text:var(--nh-forest,#1E3932);
  --pill-bd:rgba(0,0,0,.08);
  display:inline-block;
  padding:6px 12px;
  border-radius:4px;
  color:var(--pill-text);
  background:var(--pill-bg);
  border:1px solid var(--pill-bd);
  text-decoration:none;
  transition:background .2s,border-color .2s,color .2s,box-shadow .2s;
}

.blog-category-nav a:hover{
  background:#EEEDEB;
  border-color:rgba(0,0,0,.12);
}

.blog-category-nav a:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(54,180,122,.25);
}

.blog-category-nav a.active{
  background:var(--nh-green,#00704A);
  color:#fff;
  border-color:var(--nh-green,#00704A);
}

/* Hide Astra's duplicate archive header area */
.blog .ast-archive-description,
.category .ast-archive-description,
.tag .ast-archive-description,
.author .ast-archive-description,
.date .ast-archive-description,
.post-type-archive-service .ast-archive-description{
  display:none;
}

/* ---------- Back bar + breadcrumbs ---------- */
.nh-backbar{
  margin:8px 0 6px;
}

.nh-backbar__link{
  font-weight:600;
  color:var(--nh-forest,#1E3932);
  text-decoration:none;
  border-bottom:1px solid currentColor;
}

.nh-backbar__link:hover{
  opacity:.85;
}

.nh-breadcrumbs{
  margin:4px 0 16px;
  color:rgba(0,0,0,.65);
  font-size:.94rem;
}

/* ---------- Single content shell ---------- */
.single-post .ast-article-single,
.single-service .ast-article-single{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:4px;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}

/* Neutralize Astra's inner wrapper */
.ast-article-single .single-layout-1{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.ast-article-single .entry-header{
  padding:18px 18px 0;
  background:transparent;
  border:0;
  box-shadow:none;
}

.ast-article-single .entry-content{
  padding:12px 18px 20px;
  background:transparent;
  border:0;
  box-shadow:none;
}

/* ---------- Prev/Next nav ---------- */
.post-navigation .nav-links{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:24px;
  margin:22px 0;
  padding:10px 0;
  border-top:1px solid rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.08);
}

.post-navigation a{
  color:var(--nh-forest,#1E3932);
  text-decoration:none;
  display:block;
}

.post-navigation a:hover{
  opacity:.85;
}

.post-navigation p{
  margin:6px 0 0;
  font-weight:600;
}

/* ---------- Related grid ---------- */
.nh-related{
  margin-top:40px;
}

.nh-related__grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}

.nh-related__thumb img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
  border-radius:4px;
}

.nh-related__title{
  font-size:1rem;
  margin-top:8px;
}

/* Blog + services – mobile spacing */
@media (max-width: 768px){
  .ast-article-post .ast-article-inner{
    padding-left: 16px;
    padding-right: 16px;
  }

  .ast-article-post .post-content{
    padding-left: 0;
    padding-right: 0;
  }

  .ast-article-post .entry-title{ margin-top: 8px; }
  .ast-excerpt-container p{ margin-top: 6px; }
}

/* Extra tweaks */
@media (max-width:480px){
  .blog-category-nav a{ padding:5px 10px; }

  .ast-article-post .post-thumb,
  .ast-article-post .post-thumb-img-content{ min-height:180px; }
}

/* =========================================================
   SUBCATEGORY SECTION – PRO VERSION
   ========================================================= */

.subcategory-grid{
  text-align:center;
  margin:48px 0;
}

.subcategory-title{
  font-size:clamp(20px, 3vw, 26px);
  margin:0 0 32px;
  color:var(--nh-forest, #1E3932);
  font-weight:600;
  letter-spacing:.2px;
}

/* LINKS */
.subcategory-items a{
  display:block;
  text-decoration:none;
  color:inherit;
}

/* CARD */
.subcategory-item{
  text-align:center;
  transition:transform .2s ease;
}

.subcategory-item:hover{
  transform:translateY(-4px);
}

/* IMAGE */
.subcategory-item img{
  width:100%;
  max-width:140px;
  margin:0 auto;
  display:block;

  aspect-ratio:1/1;
  object-fit:contain;

  border-radius:4px;
  background:#f7f7f5;
  border:1px solid #eee;

  padding:18px;
  transition:all .25s ease;
}

/* HOVER */
.subcategory-item a:hover img{
  transform:scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

/* LABEL */
.subcategory-item span{
  display:block;
  margin-top:12px;
  font-size:14px;
  color:#2C2A29;
  font-weight:500;
  line-height:1.4;
}

/* =========================
   MOBILE (scroll row)
   ========================= */
.subcategory-items{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding:0 16px 10px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}

.subcategory-items::-webkit-scrollbar{
  display:none;
}

.subcategory-item{
  flex:0 0 auto;
  width:140px;
  scroll-snap-align:start;
}

/* =========================
   DESKTOP (AUTO GRID )
   ========================= */
@media (min-width:768px){

  .subcategory-items{
    display:grid;

    /* THIS IS THE KEY */
    grid-template-columns:repeat(auto-fit, minmax(140px, 1fr));

    gap:32px;
    max-width:1200px;
    margin:0 auto;

    padding:0;
    overflow:visible;

    justify-items:center;
  }

  .subcategory-item{
    width:100%;
    max-width:160px;
  }
}

/* =========================================================
   5) CATALOG
   ========================================================= */

/* Catalog cleanups */
span.ast-on-card-button.ast-onsale-card,
a.ast-on-card-button.ast-select-options-trigger,
.ast-on-card-button{
  display:none !important;
}

/* Hide title on homepage */
.home .entry-title,
.home h1.entry-title{
  display:none !important;
}

/* Make each product tile a flex column */
.woocommerce ul.products li.product{
  display:flex;
  flex-direction:column;
}

/* Astra wraps title/price/button inside this summary container */
.woocommerce ul.products li.product .astra-shop-summary-wrap{
  display:flex;
  flex-direction:column;
  flex:1;
}

/* Make "Customize" look like other archive buttons */
.woocommerce ul.products li.product a.nh-btn-customize{
  display:block;
  width:100%;
  text-align:center;
}

/* Push CTA buttons to the bottom */
.woocommerce ul.products li.product .astra-shop-summary-wrap > a.button,
.woocommerce ul.products li.product .astra-shop-summary-wrap > a.nh-btn-customize{
  margin-top:auto;
}

/* Reserve up to ~2 lines for price */
.woocommerce ul.products li.product .astra-shop-summary-wrap > .price{
  min-height:2.4em;
}

.nh-price-unit{
  white-space: nowrap;
  font-size: 0.95em;
  font-weight: 400;
}

/* =========================================================
   6) PRODUCT PAGE TWEAKS
   ========================================================= */
.single-product .entry-summary .product-secondary-title{
  font-weight:500;
  font-size:.8em;
  margin:.25rem 0 .5rem;
  line-height:1.3;
}

.woocommerce ul.products .product-secondary-title,
.archive .product .product-secondary-title{
  font-size:inherit;
  font-weight:inherit;
  line-height:inherit;
  margin:0;
}

/* =========================================================
   7) WOO PAGINATION
   ========================================================= */
nav.woocommerce-pagination{
  display:flex;
  justify-content:center;
  margin:40px 0;
  overflow:visible;
}

nav.woocommerce-pagination ul.page-numbers{
  display:inline-flex;
  align-items:center;
  gap:10px;
  list-style:none;
  padding:0;
  margin:0;
  overflow:visible;
}

nav.woocommerce-pagination ul.page-numbers > li{
  margin:0;
  padding:0;
  border:0;
  background:none;
}

nav.woocommerce-pagination .page-numbers{
  --pg-forest: var(--nh-forest, #1E3932);
  --pg-cream:  var(--nh-cream, #F6F4EF);
  --pg-text:   var(--ui-text, #2C2A29);

  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  min-width:44px;
  padding:0 14px;
  font-size:14px;
  font-weight:500;
  line-height:1;
  border-radius:4px;
  border:1px solid transparent;
  background:#fff;
  background-clip:padding-box;
  box-shadow:none;
  outline:0;
  text-decoration:none;
  color:var(--pg-text);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

nav.woocommerce-pagination a.page-numbers:not(.current):hover{
  background:var(--pg-cream);
  border-color:var(--pg-forest);
  color:var(--pg-forest);
  box-shadow:0 2px 6px rgba(0, 0, 0, 0.08);
}

nav.woocommerce-pagination .page-numbers.current{
  background:var(--pg-forest);
  border-color:var(--pg-forest);
  color:#fff;
  box-shadow:0 2px 6px rgba(0, 0, 0, 0.12);
}

nav.woocommerce-pagination a.page-numbers.prev,
nav.woocommerce-pagination a.page-numbers.next{
  color:var(--pg-forest);
  font-weight:600;
}

nav.woocommerce-pagination a.page-numbers.prev:hover,
nav.woocommerce-pagination a.page-numbers.next:hover{
  background:var(--pg-cream);
  border-color:var(--pg-forest);
  color:var(--pg-forest);
  box-shadow:0 2px 6px rgba(0, 0, 0, 0.08);
}

nav.woocommerce-pagination .page-numbers.dots{
  background:transparent;
  border:none;
  min-width:auto;
  padding:0 6px;
  color:#8b8b86;
}

nav.woocommerce-pagination a.page-numbers:focus-visible{
  outline:2px solid var(--pg-forest);
  outline-offset:2px;
  box-shadow:none;
}

nav.woocommerce-pagination .page-numbers[aria-disabled="true"]{
  opacity:0.45;
  pointer-events:none;
}

@media (max-width: 480px){
  nav.woocommerce-pagination .page-numbers{
    min-width:40px;
    height:40px;
  }
}

/* =========================================================
   9) FOOTER (clean, ordered)
   ========================================================= */
.nh-footer{
  background:var(--nh-forest,#1E3932);
  color:var(--nh-offwhite,#FAF7F2);
  font-size:15px;
}

.nh-footer a{
  color:inherit;
  text-decoration:none;
}

.nh-footer a:hover{
  text-decoration:underline;
  text-underline-offset:2px;
}

/* Headings */
.nh-footer__heading{
  color:var(--nh-offwhite,#FAF7F2);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-size:.95rem;
  margin:0 0 .7rem;
  opacity:.95;
}

/* Layout: Brand / Shop / Explore / Legal / Newsletter */
.nh-footer__top{
  display:grid;
  gap:clamp(16px,2vw,24px);
  grid-template-columns:1.2fr 1fr 1fr 1fr 1.2fr;
  padding:clamp(28px,4vw,56px) clamp(16px,4vw,40px);
  border-bottom:1px solid rgba(255,255,255,.15);
}

/* Brand list */
.nh-footer__list{
  margin:0;
  padding:0;
  list-style:none;
}

.nh-footer__list li{
  margin:.25rem 0;
}

.nh-footer__list a{
  text-decoration:underline;
  text-underline-offset:2px;
}

/* Menus */
.nh-footer__menu{
  margin:0;
  padding:0;
  list-style:none;
  column-gap:28px;
  column-fill:balance;
}

.nh-footer__menu > li{
  break-inside:avoid;
  margin:.4rem 0;
}

@media (min-width: 980px){
  .nh-footer__menu{
    columns:2 220px;
  }
}

/* Newsletter */
.nh-footer__newsletter .nh-nl{
  display:grid;
  grid-template-columns:1fr;
  gap:.5rem;
  max-width:420px;
}

.nh-nl__input{
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:#fff;
  color:#111;
  padding:0 14px;
}

.nh-nl__input::placeholder{
  color:#666;
}

.nh-nl__btn{
  height:44px;
  border:none;
  border-radius:4px;
  padding:0 18px;
  background:var(--nh-green,#00704A);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.nh-nl__btn:hover{
  filter:brightness(1.07);
}

.nh-nl__hint{
  display:block;
  opacity:.85;
  font-size:12px;
}

/* Social (with subheading) */
.nh-footer__social-wrap{
  margin-top:14px;
}

.nh-footer__subheading{
  margin:0 0 8px;
  color:var(--nh-offwhite,#FAF7F2);
  font-weight:700;
  font-size:.95rem;
  letter-spacing:.02em;
}

.nh-footer__social{
  display:flex;
  gap:10px;
}

.nh-social__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  transition:transform .12s ease, background .12s ease, opacity .12s ease;
}

.nh-social__link:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.18);
}

.nh-social__link--light img{
  filter:invert(1) brightness(1.25) contrast(1.1);
  width:20px;
  height:20px;
}

/* Bottom bar */
.nh-footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px clamp(16px,4vw,40px);
  font-size:14px;
}

/* Left (copyright) */
.nh-footer__legal-left{
  opacity:.95;
}

/* Right group: B2B + small menu */
.nh-footer__legal-right{
  display:flex;
  align-items:center;
  gap:12px 16px;
  flex-wrap:wrap;
}

/* B2B pill */
.nh-footer__b2b{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border-radius:4px;
  background:rgba(255,255,255,.14);
  font-weight:600;
  text-decoration:none;
}

.nh-footer__b2b:hover{
  background:rgba(255,255,255,.20);
}

/* Bottom menu */
.nh-footer__bottom-menu,
.nh-footer__legal-menu{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:0;
}

.nh-footer__bottom-menu > li,
.nh-footer__legal-menu > li{
  list-style:none;
  margin:0;
  padding:0;
}

.nh-footer__bottom-menu > li + li::before,
.nh-footer__legal-menu > li + li::before{
  content:"·";
  opacity:.6;
  margin:0 .5rem;
}

.nh-footer__bottom-menu a,
.nh-footer__legal-menu a{
  opacity:.9;
  text-decoration:none;
}

.nh-footer__bottom-menu a:hover,
.nh-footer__legal-menu a:hover{
  opacity:1;
  text-decoration:underline;
}

/* Footer responsive */
@media (max-width: 1100px){
  .nh-footer__top{
    grid-template-columns:1.2fr 1fr 1fr;
  }

  .nh-footer__newsletter{
    grid-column:1 / -1;
  }
}

@media (max-width: 740px){
  .nh-footer__newsletter .nh-nl{
    grid-template-columns:1fr auto;
    align-items:center;
  }

  .nh-nl__hint{
    grid-column:1 / -1;
  }
}

@media (max-width: 720px){
  .nh-footer__top{
    grid-template-columns:1fr;
  }

  .nh-footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .nh-footer__menu{
    columns:1;
  }

  .nh-footer__social{
    gap:8px;
  }
}

/* =========================================================
   10) OTHER
   ========================================================= */

/* Don’t show native page title/featured image on Pages */
.page .entry-title,
.page .post-thumb,
.page .wp-post-image{
  display:none !important;
}

/* Hide short description in Cart & Checkout blocks */
.wc-block-components-product-metadata__description{
  display:none !important;
}

/* Fix Breadcrumb Contrast for Accessibility */
.woocommerce-breadcrumb {
    color: #555 !important; /* Darker gray for the current page text */
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.woocommerce-breadcrumb a {
    color: #222 !important; /* Much darker color for the links */
    text-decoration: underline; /* Optional: helps users identify they are links */
}

.woocommerce-breadcrumb a:hover {
    color: #000 !important; /* Black on hover */
    text-decoration: none;
}
