/** Shopify CDN: Minification failed

Line 195:1 Expected "}" to go with "{"

**/
/*
==============================================================
  NASHUA NUTRITION — GLOBAL CUSTOM STYLES
  File: assets/nn-global.css
  Load order: Included via layout/theme.liquid after theme CSS
  Purpose: Custom overrides and additions isolated from Eurus
           theme stylesheets. Never modify Eurus base CSS directly.

  SECTIONS IN THIS FILE
  ──────────────────────
  1. Responsive Tables (.nn-responsive-table)

  TO ADD NEW GLOBAL STYLES: append a new numbered section below.
  Do not edit Eurus base.css or any other theme file directly.
==============================================================*/


/* ==============================================================
   1. RESPONSIVE TABLES
   Class: .nn-responsive-table
   Usage: Add class="nn-responsive-table" to any <table> element.
          Add data-label="Column Header" to every <td> element
          so mobile card labels render correctly.
   Desktop: full grid with borders
   Mobile:  rows stack as individual bordered cards, headers hidden
   Note: !important used on mobile layout rules to override
         Eurus base table resets in theme.css
============================================================== */

table.nn-responsive-table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
}

table.nn-responsive-table th,
table.nn-responsive-table td {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  text-align: left;
  vertical-align: top;
}

table.nn-responsive-table thead th {
  background: #f6f6f6;
  font-weight: 700;
}

table.nn-responsive-table caption {
  text-align: left;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (max-width: 600px) {

  table.nn-responsive-table {
    border: 0 !important;
  }

  table.nn-responsive-table thead {
    border: 0 !important;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table.nn-responsive-table,
  table.nn-responsive-table caption,
  table.nn-responsive-table tbody,
  table.nn-responsive-table tr,
  table.nn-responsive-table th,
  table.nn-responsive-table td {
    display: block !important;
    width: 100% !important;
  }

  table.nn-responsive-table caption {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  table.nn-responsive-table tr {
    border: 1px solid rgba(0, 0, 0, 0.16) !important;
    border-radius: 12px;
    padding: 12px;
    margin: 0 0 12px 0;
    background: #fff;
  }

  table.nn-responsive-table th[scope="row"] {
    border: 0 !important;
    font-weight: 700;
    padding: 0 0 8px 0;
    background: transparent;
  }

  table.nn-responsive-table td {
    border: 0 !important;
    padding: 6px 0;
  }

  table.nn-responsive-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
  }

/* --- nn-product-highlights: dynamic callout badges (#89zi) --- */
.nn-product-highlights {
  margin: 0 0 20px;
}

.nn-product-highlights__heading {
  font-size: 1em;
  font-weight: 600;
  color: var(--colors-heading, #006d77);
  margin: 0 0 8px;
  text-transform: none;
}

.nn-product-highlights__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.nn-product-highlights__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  background: var(--colors-background-2, #f5f3ef);
  color: var(--colors-heading, #006d77);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.nn-product-highlights__item::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--colors-accent, #22b6a8);
  flex-shrink: 0;
}

@media (max-width: 749px) {
  .nn-product-highlights__list {
    gap: 6px 8px;
  }
  .nn-product-highlights__item {
    font-size: 12px;
    padding: 4px 10px 4px 8px;
  }
  .nn-product-highlights__item::before {
    width: 6px;
    height: 6px;
    min-width: 6px;
  }
}

/* Task #85 — Protocol page anchor scroll offset for sticky header */
#ipa-guide,
#glp-1-guide,
#bariatric-guide,
#keto-guide,
#start-here-guide,
#ipa-faq,
#glp-1-faq,
#bariatric-faq,
#keto-faq,
#start-here-faq,
#ipa-calculator {
  scroll-margin-top: 100px;
}