/* ═══════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --green:      #2d7a3a;
  --green-dark: #1b5e20;
  --brown:      #8B4513;
  --yellow:     #f5a623;
  --yellow-light: #ffd700;
  --dark:       #1a1a1a;
  --mid:        #555;
  --light:      #f8f8f8;
  --border:     #e8e8e8;
  --white:      #ffffff;
  --radius:     8px;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --header-h:   70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: #fff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }

/* Ensure every section never escapes viewport width */
.nr-announcement-bar,
.nr-header,
.nr-hero,
.nr-trust,
.nr-section,
.nr-footer {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ═══════════════════════════════════════
   CONTAINER
═══════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════ */
.nr-announcement-bar {
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  /* Use fixed height + relative positioning to contain the absolute track */
  position: relative;
  height: 34px;
  overflow: hidden;
  width: 100%;
}
.nr-announcement-track {
  /* Absolute so it never affects document flow / scrollWidth */
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  white-space: nowrap;
  will-change: transform;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(-50%) translateX(-33.333%); }
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.nr-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nr-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

/* Logo */
.nr-logo { flex-shrink: 0; }
.nr-logo-text, .nr-footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
.nr-logo-nabhi { color: var(--green); }
.nr-logo-roots { color: var(--brown); }
.nr-logo img { height: 50px; width: auto; }

/* Nav */
.nr-nav { flex: 1; display: flex; justify-content: center; }
.nr-nav-list { display: flex; gap: 32px; align-items: center; }
.nr-nav-list li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nr-nav-list li a:hover,
.nr-nav-list li.current-menu-item > a {
  color: var(--green);
  border-color: var(--green);
}

/* Header icons */
.nr-header-icons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nr-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--dark);
  transition: background 0.2s, color 0.2s;
}
.nr-icon-btn:hover { background: var(--light); color: var(--green); }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Search bar */
.nr-search-bar {
  display: none;
  background: var(--light);
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.nr-search-bar.active { display: block; }
.nr-search-bar form { display: flex; gap: 8px; }
.nr-search-bar input[type="search"] {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
}
.nr-search-bar input[type="search"]:focus { border-color: var(--green); }
.nr-search-bar button {
  background: var(--green);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
}

/* Hamburger */
.nr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nr-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.nr-hero {
  background: linear-gradient(135deg, #1a3a20 0%, #2d7a3a 40%, #5a9e4a 100%);
  min-height: 480px;
  display: flex;
  align-items: center;
}
.nr-hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.nr-hero-text { flex: 1; color: #fff; }
.nr-hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.nr-hero-heading {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.nr-hero-heading span { color: var(--yellow-light); }
.nr-hero-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.nr-hero-mrp {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  text-decoration: line-through;
}
.nr-hero-now {
  font-size: 28px;
  font-weight: 800;
  color: var(--yellow-light);
}
.nr-hero-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: background 0.2s, transform 0.2s;
}
.nr-hero-btn:hover { background: #e09500; transform: translateY(-2px); }
.nr-hero-visual { flex: 0 0 400px; display: flex; justify-content: center; }
.nr-hero-placeholder { width: 360px; }
.nr-hero-basket svg { width: 100%; height: auto; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3)); }

/* ═══════════════════════════════════════
   TRUST BADGES
═══════════════════════════════════════ */
.nr-trust {
  background: #fff;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.nr-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.nr-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.nr-trust-icon svg { width: 48px; height: 48px; }
.nr-trust-label { font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.4; }

/* ═══════════════════════════════════════
   SECTIONS COMMON
═══════════════════════════════════════ */
.nr-section { padding: 60px 0; }
.nr-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.nr-section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.nr-section-title.nr-center { text-align: center; width: 100%; }
.nr-section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.nr-section-eyebrow.nr-center { text-align: center; }
.nr-view-more {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--green);
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s;
}
.nr-view-more:hover { background: var(--green-dark); }

/* ═══════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════ */
.nr-products-row { display: flex; gap: 20px; }
.nr-products-scroll { overflow-x: auto; padding-bottom: 12px; scrollbar-width: thin; }
.nr-products-scroll::-webkit-scrollbar { height: 4px; }
.nr-products-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.nr-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.nr-product-card {
  flex: 0 0 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.nr-products-grid .nr-product-card { flex: unset; }
.nr-product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.nr-card-link { display: block; color: inherit; }
.nr-card-img-wrap { position: relative; overflow: hidden; }
.nr-card-img-wrap img,
.nr-card-img-wrap .woocommerce-placeholder {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.nr-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}
.nr-badge--featured { background: var(--green); color: #fff; }
.nr-badge--sale     { background: #c0392b; color: #fff; }

.nr-card-cat {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  padding: 8px 14px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nr-card-stars {
  display: flex;
  align-items: center;
  gap: 1px;
  padding: 6px 14px 0;
  font-size: 13px;
}
.star.full  { color: #f5a623; }
.star.half  { color: #f5a623; }
.star.empty { color: #ddd; }
.nr-card-rcount { font-size: 11px; color: var(--mid); margin-left: 4px; }
.nr-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  padding: 6px 14px 4px;
  line-height: 1.3;
}
.nr-card-price {
  padding: 0 14px 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}
.nr-card-price del { color: #aaa; font-size: 12px; font-weight: 400; margin-right: 4px; }
.nr-card-price ins { text-decoration: none; }

.nr-add-to-cart-btn {
  display: block;
  margin: 0 14px 14px;
  padding: 9px;
  text-align: center;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  cursor: pointer;
}
.nr-add-to-cart-btn:hover { background: var(--green-dark); }
.nr-add-to-cart-btn--sm {
  margin: 0;
  padding: 7px 14px;
  font-size: 12px;
  border-radius: 5px;
}

/* ═══════════════════════════════════════
   MOST LOVED
═══════════════════════════════════════ */
.nr-most-loved { background: #fff; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.nr-testimonials { background: var(--light); }
.nr-testimonials .nr-section-title { margin-bottom: 32px; }
.nr-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nr-testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.25s, transform 0.25s;
}
.nr-testimonial-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.nr-testi-quote {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}
.nr-testi-footer { display: flex; align-items: center; gap: 10px; }
.nr-testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nr-testi-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.nr-testi-stars { color: var(--yellow); font-size: 12px; margin-top: 2px; }

/* ═══════════════════════════════════════
   SHOP BY STORIES
═══════════════════════════════════════ */
.nr-stories { background: #fff; }
.nr-stories .nr-section-title { margin-bottom: 28px; }
.nr-stories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.nr-story-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.nr-story-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.nr-story-img-wrap { position: relative; overflow: hidden; }
.nr-story-img-wrap img,
.nr-story-img-wrap .woocommerce-placeholder {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s;
}
.nr-story-card:hover .nr-story-img-wrap img { transform: scale(1.05); }
.nr-story-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  padding: 20px 10px 8px;
}
.nr-story-cat { color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.nr-story-info { padding: 12px; }
.nr-story-title { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 4px; line-height: 1.3; }
.nr-story-price { font-size: 13px; font-weight: 700; color: var(--green); margin-bottom: 8px; }

/* ═══════════════════════════════════════
   SHOP BY CATEGORY
═══════════════════════════════════════ */
.nr-shop-cat { background: #fafafa; }
.nr-shop-cat .nr-section-title { margin-bottom: 28px; }

.nr-cat-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.nr-cat-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--mid);
  background: #fff;
  transition: all 0.2s;
  cursor: pointer;
}
.nr-cat-tab:hover  { border-color: var(--green); color: var(--green); }
.nr-cat-tab.active { background: var(--green); border-color: var(--green); color: #fff; }

.nr-cat-products { }
.nr-cat-products .nr-product-card.hidden { display: none; }

/* ═══════════════════════════════════════
   WHY CHOOSE
═══════════════════════════════════════ */
.nr-why { background: #fff; }
.nr-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.nr-why-visual { }
.nr-why-img-placeholder { border-radius: 16px; overflow: hidden; }
.nr-why-img-placeholder svg { width: 100%; height: auto; }
.nr-why-content { }
.nr-why-content .nr-section-title { margin-bottom: 16px; }
.nr-why-text { font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 28px; }
.nr-why-features { display: flex; flex-direction: column; gap: 16px; }
.nr-why-feature { display: flex; align-items: flex-start; gap: 14px; }
.nr-why-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.nr-why-feature strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.nr-why-feature p { font-size: 13px; color: var(--mid); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.nr-footer { background: var(--dark); color: rgba(255,255,255,0.85); }
.nr-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 60px 24px;
}
.nr-footer-brand .nr-footer-logo { margin-bottom: 16px; font-size: 24px; }
.nr-footer-brand .nr-logo-nabhi { color: #7ec88a; }
.nr-footer-brand .nr-logo-roots { color: #c8906a; }
.nr-footer-tagline { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.nr-footer-social { display: flex; gap: 12px; }
.nr-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: background 0.2s, color 0.2s;
}
.nr-social-link:hover { background: var(--green); color: #fff; }
.nr-footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.nr-footer-links { display: flex; flex-direction: column; gap: 10px; }
.nr-footer-links a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.nr-footer-links a:hover { color: #7ec88a; }
.nr-footer-contact { display: flex; flex-direction: column; gap: 12px; }
.nr-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.nr-footer-contact li svg { flex-shrink: 0; margin-top: 2px; stroke: rgba(255,255,255,0.5); }
.nr-footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.nr-footer-contact a:hover { color: #7ec88a; }
.nr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════
   SHOP PAGE
═══════════════════════════════════════ */
.nr-shop-banner {
  background: linear-gradient(135deg, #1a3a20 0%, #2d7a3a 100%);
  color: #fff;
  padding: 48px 0 36px;
}
.nr-shop-banner .nr-section-eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.nr-shop-banner-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.15;
}
.nr-shop-banner-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 14px;
  line-height: 1.7;
}
.nr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.nr-breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.nr-breadcrumb a:hover { color: #fff; }
.nr-bc-sep { opacity: 0.5; }

.nr-shop-page { padding: 32px 0 60px; }

/* Category tabs on shop page — links not buttons */
.nr-shop-cat-tabs { margin-bottom: 28px; }
.nr-shop-cat-tabs .nr-cat-tab { display: inline-flex; align-items: center; gap: 4px; }
.nr-cat-count {
  font-size: 10px;
  font-weight: 600;
  color: inherit;
  opacity: 0.7;
  vertical-align: super;
}

/* Toolbar */
.nr-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.nr-shop-result-count .woocommerce-result-count {
  font-size: 13px;
  color: var(--mid);
  margin: 0;
}
.nr-shop-sort .woocommerce-ordering {
  margin: 0;
}
.nr-shop-sort select {
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--dark);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.nr-shop-sort select:focus { border-color: var(--green); }

/* Shop grid — 4 cols (same as homepage) */
.nr-shop-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Pagination */
.nr-shop-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.nr-shop-pagination .woocommerce-pagination ul {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.nr-shop-pagination .woocommerce-pagination ul li { display: flex; }
.nr-shop-pagination .woocommerce-pagination ul li a,
.nr-shop-pagination .woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: #fff;
  transition: all 0.2s;
}
.nr-shop-pagination .woocommerce-pagination ul li a:hover { border-color: var(--green); color: var(--green); }
.nr-shop-pagination .woocommerce-pagination ul li span.current {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* Empty state */
.nr-shop-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--mid);
}
.nr-shop-empty-icon { font-size: 56px; margin-bottom: 16px; }
.nr-shop-empty h3 { font-size: 22px; color: var(--dark); margin-bottom: 8px; }
.nr-shop-empty p  { font-size: 14px; }

/* ═══════════════════════════════════════
   WOOCOMMERCE — SINGLE PRODUCT
═══════════════════════════════════════ */
.nr-wc-single-wrap { padding: 40px 0 60px; }
.nr-wc-single-wrap .woocommerce,
.nr-wc-single-wrap .woocommerce-page { width: 100%; }

/* Breadcrumb */
.nr-wc-single-wrap .woocommerce-breadcrumb {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 28px;
}
.nr-wc-single-wrap .woocommerce-breadcrumb a { color: var(--green); }
.nr-wc-single-wrap .woocommerce-breadcrumb a:hover { text-decoration: underline; }

/* ── Two-column product layout ── */
.nr-wc-single-wrap div.product {
  display: flex;
  flex-wrap: wrap;        /* allows tabs to drop to a new row */
  gap: 48px;
  align-items: flex-start;
  position: relative;
}

/* Left column: gallery */
.nr-wc-single-wrap div.product .woocommerce-product-gallery {
  flex: 0 0 calc(46% - 24px);
  max-width: calc(46% - 24px);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.nr-wc-single-wrap .woocommerce-product-gallery__wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fafafa;
}
.nr-wc-single-wrap .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
}
.nr-wc-single-wrap .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  z-index: 2;
  transition: background 0.2s;
}
.nr-wc-single-wrap .woocommerce-product-gallery__trigger:hover { background: #fff; }

/* Right column: summary */
.nr-wc-single-wrap div.product .summary.entry-summary {
  flex: 1;
  min-width: 0;
}

/* Tabs — force full width (new row) */
.nr-wc-single-wrap div.product .woocommerce-tabs {
  flex: 0 0 100%;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 36px;
  margin-top: 8px;
}

/* Sale badge */
.nr-wc-single-wrap span.onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 3;
  letter-spacing: 0.3px;
}

/* Product title */
.nr-wc-single-wrap .product_title.entry-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

/* Star rating */
.nr-wc-single-wrap .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--mid);
}
.nr-wc-single-wrap .star-rating {
  color: var(--yellow);
  letter-spacing: 1px;
}

/* Price */
.nr-wc-single-wrap p.price,
.nr-wc-single-wrap div.price {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--green) !important;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.nr-wc-single-wrap p.price del,
.nr-wc-single-wrap div.price del {
  color: #aaa !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}
.nr-wc-single-wrap p.price ins,
.nr-wc-single-wrap div.price ins { text-decoration: none !important; }

/* Short description */
.nr-wc-single-wrap .woocommerce-product-details__short-description {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* Variation form */
.nr-wc-single-wrap .variations_form .variations {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 16px;
}
.nr-wc-single-wrap .variations_form .variations tr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.nr-wc-single-wrap .variations_form .variations td,
.nr-wc-single-wrap .variations_form .variations th { padding: 0; border: 0; }
.nr-wc-single-wrap .variations_form .label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  min-width: 70px;
}
.nr-wc-single-wrap .variations_form .value { flex: 1; }
.nr-wc-single-wrap .variations_form select {
  width: 100%;
  padding: 10px 36px 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--dark);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.nr-wc-single-wrap .variations_form select:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(45,122,58,0.12);
}
.nr-wc-single-wrap .reset_variations {
  font-size: 12px;
  color: var(--mid);
  display: inline-block;
  margin-top: 4px;
}
/* Single variation price shown below selector */
.nr-wc-single-wrap .single_variation_wrap .price {
  margin-bottom: 16px;
  font-size: 22px !important;
}
.nr-wc-single-wrap .woocommerce-variation-availability { margin-bottom: 8px; font-size: 13px; }
.nr-wc-single-wrap .stock.in-stock  { color: var(--green); font-weight: 600; }
.nr-wc-single-wrap .stock.out-of-stock { color: #c0392b; font-weight: 600; }

/* Add to cart row */
.nr-wc-single-wrap form.cart {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.nr-wc-single-wrap form.cart .qty {
  width: 72px;
  padding: 11px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  text-align: center;
  color: var(--dark);
}
.nr-wc-single-wrap form.cart .qty:focus { border-color: var(--green); outline: none; }
.nr-wc-single-wrap .single_add_to_cart_button {
  flex: 1;
  min-width: 160px;
  background: var(--green) !important;
  color: #fff !important;
  border: none !important;
  padding: 13px 24px !important;
  border-radius: var(--radius) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  letter-spacing: 0.3px;
}
.nr-wc-single-wrap .single_add_to_cart_button:hover { background: var(--green-dark) !important; }
.nr-wc-single-wrap .single_add_to_cart_button.loading { opacity: 0.7; pointer-events: none; }

/* Product meta */
.nr-wc-single-wrap .product_meta {
  font-size: 13px;
  color: var(--mid);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nr-wc-single-wrap .product_meta .sku_wrapper,
.nr-wc-single-wrap .product_meta .posted_in,
.nr-wc-single-wrap .product_meta .tagged_as {
  display: flex;
  gap: 6px;
}
.nr-wc-single-wrap .product_meta .label { font-weight: 600; color: var(--dark); }
.nr-wc-single-wrap .product_meta a { color: var(--green); }
.nr-wc-single-wrap .product_meta a:hover { text-decoration: underline; }

/* ── Tabs ── */
.nr-wc-single-wrap .woocommerce-tabs ul.tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin: 0 0 28px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  gap: 0;
}
.nr-wc-single-wrap .woocommerce-tabs ul.tabs li {
  margin-bottom: -2px;
  background: none;
  border: none;
  padding: 0;
}
.nr-wc-single-wrap .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.nr-wc-single-wrap .woocommerce-tabs ul.tabs li a:hover,
.nr-wc-single-wrap .woocommerce-tabs ul.tabs li.active a {
  color: var(--green);
  border-bottom-color: var(--green);
}
.nr-wc-single-wrap .woocommerce-tabs .panel {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
  max-width: 760px;
}
.nr-wc-single-wrap .woocommerce-tabs .panel h2 { display: none; }
.nr-wc-single-wrap .woocommerce-tabs .panel p { margin-bottom: 12px; }
.nr-wc-single-wrap .woocommerce-tabs .panel table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.nr-wc-single-wrap .woocommerce-tabs .panel table th,
.nr-wc-single-wrap .woocommerce-tabs .panel table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-size: 13px;
  text-align: left;
}
.nr-wc-single-wrap .woocommerce-tabs .panel table th { background: var(--light); font-weight: 600; color: var(--dark); }

/* ── Related products ── */
.nr-wc-single-wrap .related.products,
.nr-wc-single-wrap .upsells.products {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.nr-wc-single-wrap .related.products > h2,
.nr-wc-single-wrap .upsells.products > h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}
.nr-wc-single-wrap .related.products ul.products,
.nr-wc-single-wrap .upsells.products ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nr-wc-single-wrap .related.products ul.products li.product,
.nr-wc-single-wrap .upsells.products ul.products li.product {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}
.nr-wc-single-wrap .related.products ul.products li.product:hover,
.nr-wc-single-wrap .upsells.products ul.products li.product:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.nr-wc-single-wrap .related.products ul.products li.product img,
.nr-wc-single-wrap .upsells.products ul.products li.product img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.nr-wc-single-wrap .related.products ul.products li.product .woocommerce-loop-product__title,
.nr-wc-single-wrap .upsells.products ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 14px 4px;
  color: var(--dark);
}
.nr-wc-single-wrap .related.products ul.products li.product .price,
.nr-wc-single-wrap .upsells.products ul.products li.product .price {
  padding: 0 14px 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin: 0;
  display: block;
}
.nr-wc-single-wrap .related.products ul.products li.product .button,
.nr-wc-single-wrap .upsells.products ul.products li.product .button {
  display: block;
  margin: 0 14px 14px;
  padding: 9px;
  text-align: center;
  background: var(--green);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.nr-wc-single-wrap .related.products ul.products li.product .button:hover,
.nr-wc-single-wrap .upsells.products ul.products li.product .button:hover {
  background: var(--green-dark);
  color: #fff;
}

/* ═══════════════════════════════════════
   WOOCOMMERCE — CART & CHECKOUT
═══════════════════════════════════════ */
.nr-wc-single-wrap .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.nr-wc-single-wrap .shop_table th,
.nr-wc-single-wrap .shop_table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: middle;
}
.nr-wc-single-wrap .shop_table th { font-weight: 700; color: var(--dark); background: var(--light); }
.nr-wc-single-wrap .cart-subtotal th,
.nr-wc-single-wrap .order-total th { font-weight: 700; }
.nr-wc-single-wrap .order-total td { font-size: 18px; font-weight: 700; color: var(--green); }

.nr-wc-single-wrap .checkout-button,
.nr-wc-single-wrap .wc-proceed-to-checkout a.checkout-button {
  background: var(--green) !important;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  display: block;
  text-align: center;
  transition: background 0.2s;
  border: none;
  width: 100%;
  margin-top: 8px;
}
.nr-wc-single-wrap .checkout-button:hover,
.nr-wc-single-wrap .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--green-dark) !important;
  color: #fff !important;
}

/* ═══════════════════════════════════════
   WOOCOMMERCE — NOTICES
═══════════════════════════════════════ */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 13px 16px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.woocommerce-message { background: #f0f9f2; border-left: 4px solid var(--green); color: var(--green-dark); }
.woocommerce-error   { background: #fdf0f0; border-left: 4px solid #c0392b; color: #c0392b; }
.woocommerce-info    { background: #f0f6ff; border-left: 4px solid #2980b9; color: #1a5276; }
.woocommerce-message a.button,
.woocommerce-error   a.button { margin-left: auto; font-size: 13px; font-weight: 600; }

/* ═══════════════════════════════════════
   RESPONSIVE — SINGLE PRODUCT
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .nr-wc-single-wrap .related.products ul.products,
  .nr-wc-single-wrap .upsells.products ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nr-wc-single-wrap div.product .woocommerce-product-gallery {
    flex: 0 0 100%;
    max-width: 100%;
    position: static;
  }
  .nr-wc-single-wrap div.product .summary.entry-summary { flex: 0 0 100%; }
  .nr-wc-single-wrap div.product { gap: 24px; }
  .nr-wc-single-wrap .related.products ul.products,
  .nr-wc-single-wrap .upsells.products ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .nr-wc-single-wrap .woocommerce-tabs ul.tabs li a { padding: 10px 14px; font-size: 13px; }
}

/* ═══════════════════════════════════════
   UTILITY
═══════════════════════════════════════ */
.nr-center { text-align: center; }
.nr-page-title { font-size: 32px; font-weight: 800; margin-bottom: 24px; }

/* Policy / standard page content */
.nr-content { font-size: 15px; line-height: 1.8; color: var(--mid); }
.nr-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border);
}
.nr-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 8px;
}
.nr-content p  { margin-bottom: 14px; }
.nr-content ul,
.nr-content ol { padding-left: 24px; margin-bottom: 14px; }
.nr-content ul { list-style: disc; }
.nr-content ol { list-style: decimal; }
.nr-content li { margin-bottom: 6px; }
.nr-content strong { color: var(--dark); font-weight: 600; }
.nr-content em { color: #888; font-style: italic; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nr-trust-grid          { grid-template-columns: repeat(2, 1fr); }
  .nr-testimonials-grid   { grid-template-columns: repeat(2, 1fr); }
  .nr-stories-grid        { grid-template-columns: repeat(3, 1fr); }
  .nr-products-grid       { grid-template-columns: repeat(3, 1fr); }
  .nr-shop-grid           { grid-template-columns: repeat(3, 1fr); }
  .nr-footer-top          { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nr-hero-visual         { flex: 0 0 300px; }
  .nr-hero-placeholder    { width: 280px; }
  .nr-why-inner           { gap: 40px; }
}

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.nr-about-banner {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 56px 20px 48px;
}
.nr-about-banner h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; }
.nr-about-banner p  { font-size: 1rem; opacity: .88; }

/* Story */
.nr-about-story { padding: 64px 20px; }
.nr-about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.nr-about-img-placeholder {
  background: var(--light);
  border-radius: var(--radius);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 2px dashed var(--border);
}
.nr-about-label {
  display: inline-block;
  background: var(--light);
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.nr-about-story-text h2 { font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 18px; line-height: 1.3; }
.nr-about-story-text p  { color: #555; line-height: 1.8; margin-bottom: 14px; }

/* Mission/Vision/Values */
.nr-about-mission { background: var(--light); padding: 56px 20px; }
.nr-about-mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nr-mv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.nr-mv-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.nr-mv-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.nr-mv-card p  { font-size: .9rem; color: #555; line-height: 1.7; }

/* Stats strip */
.nr-about-stats { background: var(--green); padding: 44px 20px; }
.nr-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.nr-stat-item strong { display: block; font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.nr-stat-item span   { font-size: .85rem; color: rgba(255,255,255,.8); }

/* What makes us different */
.nr-about-diff { padding: 64px 20px; }
.nr-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.nr-diff-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.nr-diff-card span { font-size: 2rem; display: block; margin-bottom: 12px; }
.nr-diff-card h4   { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.nr-diff-card p    { font-size: .88rem; color: #666; line-height: 1.7; }

/* CTA */
.nr-about-cta {
  background: #f9fdf9;
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 64px 20px;
}
.nr-about-cta h2 { font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.nr-about-cta p  { color: #666; margin-bottom: 28px; }
.nr-about-cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s;
}
.nr-about-cta-btn:hover { background: var(--green-dark); }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.nr-contact-banner {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 56px 20px 48px;
}
.nr-contact-banner h1 { font-size: 2rem; font-weight: 700; margin-bottom: 10px; }
.nr-contact-banner p  { font-size: 1rem; opacity: .88; }

.nr-contact-body {
  padding: 56px 20px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Info cards row */
.nr-contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nr-contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.nr-contact-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.nr-contact-card h3 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green); margin-bottom: 8px; }
.nr-contact-card a, .nr-contact-card p { font-size: .92rem; color: var(--text); line-height: 1.6; }
.nr-contact-card a:hover { color: var(--green); }

/* Form wrapper */
.nr-contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nr-contact-form-wrap h2 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 28px; }

.nr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.nr-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.nr-form-group label { font-size: .85rem; font-weight: 600; color: #444; }
.nr-form-group label span { color: var(--green); }
.nr-form-group input,
.nr-form-group select,
.nr-form-group textarea {
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--dark);
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s;
}
.nr-form-group input:focus,
.nr-form-group select:focus,
.nr-form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,122,58,.1);
  background: #fff;
}
.nr-form-group textarea { resize: vertical; }

.nr-btn-submit {
  display: inline-block;
  padding: 13px 36px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.nr-btn-submit:hover { background: var(--green-dark); }

.nr-form-success {
  background: #f0f9f2;
  border-left: 4px solid var(--green);
  color: #1b5e20;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: .95rem;
  line-height: 1.6;
}
.nr-form-errors {
  background: #fdf0f0;
  border-left: 4px solid #c0392b;
  color: #c0392b;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: .9rem;
  margin-bottom: 20px;
}
.nr-form-errors p { margin: 0 0 4px; }

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .nr-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 8px 20px rgba(0,0,0,0.1); padding: 16px; z-index: 998; }
  .nr-nav.open { display: block; }
  .nr-nav-list { flex-direction: column; gap: 4px; }
  .nr-nav-list li a { display: block; padding: 10px 16px; border-radius: var(--radius); }
  .nr-nav-list li a:hover { background: var(--light); border-color: transparent; }
  .nr-hamburger { display: flex; }
  .nr-header { position: relative; }

  /* Hero */
  .nr-hero { padding: 40px 0; }
  .nr-hero-inner { flex-direction: column; gap: 32px; text-align: center; }
  .nr-hero-visual { display: none; }
  .nr-hero-price-block { align-items: center; }

  /* Trust */
  .nr-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Products */
  .nr-products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .nr-shop-grid     { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .nr-product-card  { flex: 0 0 160px; }
  /* Shop toolbar stacks on mobile */
  .nr-shop-toolbar  { flex-direction: column; align-items: flex-start; }

  /* Testimonials */
  .nr-testimonials-grid { grid-template-columns: 1fr; }

  /* Stories */
  .nr-stories-grid { grid-template-columns: repeat(2, 1fr); }
  .nr-story-card:last-child { display: none; }

  /* Why */
  .nr-why-inner { grid-template-columns: 1fr; gap: 32px; }
  .nr-why-visual { order: 2; }
  .nr-why-content { order: 1; }

  /* Footer */
  .nr-footer-top { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px; }

  /* Contact page */
  .nr-contact-info { grid-template-columns: repeat(2, 1fr); }
  .nr-form-row     { grid-template-columns: 1fr; gap: 0; }
  .nr-contact-form-wrap { padding: 24px 16px; }

  /* About page */
  .nr-about-story-inner { grid-template-columns: 1fr; gap: 32px; }
  .nr-about-mv-grid     { grid-template-columns: 1fr; }
  .nr-about-stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .nr-diff-grid         { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL (≤480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .nr-trust-grid        { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .nr-products-grid     { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .nr-stories-grid      { grid-template-columns: repeat(2, 1fr); }
  .nr-testimonials-grid { grid-template-columns: 1fr; }
  .nr-card-img-wrap img { height: 150px; }
  .nr-story-img-wrap img { height: 140px; }
  .nr-cat-tabs          { gap: 6px; }
  .nr-cat-tab           { padding: 6px 14px; font-size: 12px; }
}
