@charset "UTF-8";
/* ============================================================
   HOW TO MEASURE POLY BAGS — Theme-Matched CSS
   plasticpolybags.com — #0066cc blue palette
   
   INSTRUCTIONS:
   Storefront → My Themes → Customize → Edit Theme Files
   Open assets/css/theme.scss → scroll to bottom
   REPLACE the previous .ppb-guide block with this entire block.
   Save → Apply.
   ============================================================ */
/* ── SCOPED RESET & VARIABLES ── */
.ppb-guide *, .ppb-guide *::before, .ppb-guide *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

.ppb-guide {
  --ppb-blue:      #0066cc;
  /* primary brand blue */
  --ppb-blue-dk:   #0052a3;
  /* hover / darker shade */
  --ppb-blue-lt:   #e6f0fa;
  /* light blue tint — callout backgrounds */
  --ppb-blue-mid:  #cce0f5;
  /* slightly deeper tint for borders */
  --ppb-hero-bg:   #e8f2fb;
  /* light blue hero background */
  --ppb-calc-bg:   #deeef9;
  /* light blue calculator background */
  --ppb-navy:      #1a2a3a;
  /* dark text, table headers */
  --ppb-navy-lt:   #e4ecf4;
  /* light navy tint for tags */
  --ppb-teal:      #0d7a6e;
  /* secondary accent */
  --ppb-teal-lt:   #d0edea;
  --ppb-ink:       #1a1a1a;
  --ppb-ink-mid:   #4a4a4a;
  --ppb-ink-light: #888888;
  --ppb-bg:        #ffffff;
  --ppb-bg2:       #f4f6f8;
  --ppb-bg3:       #e8ecf0;
  --ppb-rule:      rgba(0,0,0,0.09);
  --ppb-radius:    6px;
  --ppb-radius-lg: 10px;
  font-family: inherit;
  color: var(--ppb-ink);
  line-height: 1.65;
  font-size: 15px; }

/* ── HERO BAND — light blue bg, dark readable text ── */
.ppb-hero {
  background: var(--ppb-hero-bg);
  border: 1px solid var(--ppb-blue-mid);
  border-radius: var(--ppb-radius-lg);
  padding: 48px 40px 44px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center; }

.ppb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 102, 204, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none; }

.ppb-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ppb-blue); }

.ppb-hero-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ppb-blue);
  background: rgba(0, 102, 204, 0.1);
  border: 1px solid var(--ppb-blue);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 14px; }

.ppb-hero h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ppb-navy);
  margin-bottom: 14px;
  font-family: inherit; }

.ppb-hero h1 span {
  color: var(--ppb-blue); }

.ppb-hero-lead {
  font-size: 15px;
  color: #2d4a62;
  line-height: 1.7;
  max-width: 440px; }

.ppb-hero-svg {
  width: 100%; }

/* ── STICKY TOC ── */
.ppb-toc {
  background: var(--ppb-bg2);
  border: 1px solid var(--ppb-rule);
  border-top: 3px solid var(--ppb-blue);
  border-radius: 0 0 var(--ppb-radius) var(--ppb-radius);
  padding: 0 4px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  position: sticky;
  top: 0;
  z-index: 100; }

.ppb-toc a {
  display: inline-block;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ppb-ink-mid);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s; }

.ppb-toc a:hover {
  color: var(--ppb-blue);
  border-bottom-color: var(--ppb-blue);
  text-decoration: none; }

/* ── MAIN LAYOUT ── */
.ppb-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start; }

.ppb-main > section {
  margin-bottom: 52px; }

.ppb-sidebar {
  position: sticky;
  top: 60px; }

/* ── TYPOGRAPHY ── */
.ppb-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ppb-blue);
  margin-bottom: 6px; }

.ppb-guide h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ppb-navy);
  margin-bottom: 14px;
  font-family: inherit;
  border-bottom: 2px solid var(--ppb-blue);
  padding-bottom: 10px; }

.ppb-guide h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ppb-ink);
  margin: 26px 0 9px;
  font-family: inherit; }

.ppb-guide p {
  margin-bottom: 13px;
  color: var(--ppb-ink-mid); }

.ppb-guide p:last-child {
  margin-bottom: 0; }

.ppb-guide strong {
  color: var(--ppb-ink); }

/* ── DIMENSION CARDS ── */
.ppb-dim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ppb-rule);
  border: 1px solid var(--ppb-rule);
  border-radius: var(--ppb-radius-lg);
  overflow: hidden;
  margin: 20px 0; }

.ppb-dim-card {
  background: var(--ppb-bg);
  padding: 18px 15px; }

.ppb-dim-card.ppb-dim-accent {
  background: var(--ppb-blue); }

.ppb-dim-card.ppb-dim-accent h4 {
  color: #fff; }

.ppb-dim-card.ppb-dim-accent p {
  color: rgba(255, 255, 255, 0.85); }

.ppb-dim-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 9px; }

.ppb-dim-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ppb-ink);
  margin-bottom: 5px;
  font-family: inherit; }

.ppb-dim-card p {
  font-size: 12px;
  color: var(--ppb-ink-mid);
  margin: 0;
  line-height: 1.5; }

/* ── STEP LIST ── */
.ppb-steps {
  list-style: none;
  margin: 18px 0; }

.ppb-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ppb-rule);
  align-items: start; }

.ppb-step:last-child {
  border-bottom: none; }

.ppb-step-num {
  width: 34px;
  height: 34px;
  background: var(--ppb-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0; }

.ppb-step-body h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ppb-ink);
  font-family: inherit;
  border-bottom: none;
  padding-bottom: 0; }

.ppb-step-body p {
  font-size: 13px;
  margin: 0; }

/* ── CALLOUTS ── */
.ppb-callout {
  border-left: 3px solid var(--ppb-blue);
  background: var(--ppb-blue-lt);
  padding: 14px 18px;
  border-radius: 0 var(--ppb-radius) var(--ppb-radius) 0;
  margin: 18px 0; }

.ppb-callout.ppb-teal {
  border-left-color: var(--ppb-teal);
  background: var(--ppb-teal-lt); }

.ppb-callout strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--ppb-blue); }

.ppb-callout.ppb-teal strong {
  color: var(--ppb-teal); }

.ppb-callout p {
  font-size: 13px;
  margin: 0;
  color: var(--ppb-ink-mid); }

/* ── TABLES ── */
.ppb-table-wrap {
  overflow-x: auto;
  margin: 18px 0;
  -webkit-overflow-scrolling: touch; }

.ppb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 500px; }

.ppb-table th {
  background: var(--ppb-blue);
  color: #ffffff;
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap; }

.ppb-table th:first-child {
  border-radius: 6px 0 0 0; }

.ppb-table th:last-child {
  border-radius: 0 6px 0 0; }

.ppb-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--ppb-rule);
  color: var(--ppb-ink-mid);
  vertical-align: top; }

.ppb-table tr:last-child td {
  border-bottom: none; }

.ppb-table tr:nth-child(even) td {
  background: var(--ppb-bg2); }

.ppb-tag {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-right: 4px; }

.ppb-tag-open {
  background: var(--ppb-blue-lt);
  color: var(--ppb-blue-dk); }

.ppb-tag-seal {
  background: var(--ppb-teal-lt);
  color: var(--ppb-teal); }

.ppb-tag-closed {
  background: var(--ppb-navy-lt);
  color: var(--ppb-navy); }

/* ── CALCULATOR — light blue bg, dark text, white inputs ── */
.ppb-calc {
  background: var(--ppb-calc-bg);
  border: 1px solid var(--ppb-blue-mid);
  border-top: 4px solid var(--ppb-blue);
  border-radius: var(--ppb-radius-lg);
  padding: 26px;
  color: var(--ppb-ink); }

.ppb-calc h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ppb-navy);
  margin: 0 0 3px;
  font-family: inherit;
  border-bottom: none;
  padding-bottom: 0; }

.ppb-calc-sub {
  font-size: 12px;
  color: #2d4a62;
  margin-bottom: 22px; }

.ppb-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px; }

.ppb-calc label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #2d4a62;
  margin-bottom: 6px; }

.ppb-calc input[type="number"],
.ppb-calc select {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--ppb-blue-mid);
  border-radius: 5px;
  padding: 9px 12px;
  color: var(--ppb-ink);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none; }

.ppb-calc input:focus,
.ppb-calc select:focus {
  border-color: var(--ppb-blue);
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.15); }

.ppb-calc select option {
  background: #fff;
  color: var(--ppb-ink); }

/* Result box — solid blue so the answer pops */
.ppb-calc-result {
  background: var(--ppb-blue);
  border-radius: var(--ppb-radius);
  padding: 16px 18px;
  margin-top: 18px; }

.ppb-res-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 3px; }

.ppb-res-value {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px; }

.ppb-res-break {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9; }

/* ── TOLERANCE GRID ── */
.ppb-tol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0; }

.ppb-tol-card {
  background: var(--ppb-bg);
  border: 1px solid var(--ppb-rule);
  border-top: 3px solid var(--ppb-blue);
  border-radius: var(--ppb-radius);
  padding: 15px; }

.ppb-tol-card .ppb-tol-type {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ppb-ink-light);
  margin-bottom: 3px; }

.ppb-tol-card .ppb-tol-range {
  font-size: 21px;
  font-weight: 700;
  color: var(--ppb-blue);
  margin-bottom: 3px; }

.ppb-tol-card .ppb-tol-note {
  font-size: 12px;
  color: var(--ppb-ink-mid); }

/* ── MISTAKES ── */
.ppb-mistakes {
  list-style: none;
  margin: 14px 0; }

.ppb-mistake {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--ppb-rule);
  align-items: flex-start; }

.ppb-mistake:last-child {
  border-bottom: none; }

.ppb-mistake-icon {
  width: 26px;
  height: 26px;
  background: var(--ppb-blue-lt);
  color: var(--ppb-blue-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid var(--ppb-blue-mid); }

.ppb-mistake-body h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--ppb-ink);
  font-family: inherit; }

.ppb-mistake-body p {
  font-size: 12px;
  margin: 0; }

/* ── SIDEBAR ── */
.ppb-widget {
  background: var(--ppb-bg);
  border: 1px solid var(--ppb-rule);
  border-radius: var(--ppb-radius-lg);
  overflow: hidden;
  margin-bottom: 18px; }

.ppb-widget-head {
  background: var(--ppb-blue);
  color: #ffffff;
  padding: 10px 15px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase; }

.ppb-widget-body {
  padding: 12px 15px; }

.ppb-cheat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--ppb-rule);
  font-size: 12px; }

.ppb-cheat:last-child {
  border-bottom: none; }

.ppb-cheat-term {
  color: var(--ppb-ink-mid); }

.ppb-cheat-def {
  font-weight: 700;
  color: var(--ppb-ink); }

.ppb-widget-note {
  font-size: 12px;
  color: var(--ppb-ink-mid);
  line-height: 1.6; }

.ppb-widget-note strong {
  color: var(--ppb-ink);
  display: block;
  margin-top: 10px;
  margin-bottom: 2px; }

.ppb-widget-note strong:first-child {
  margin-top: 0; }

/* ── CTA BUTTONS ── */
.ppb-cta-wrap {
  text-align: center;
  margin-top: 10px; }

.ppb-cta-wrap:first-child {
  margin-top: 0; }

.ppb-cta {
  display: block;
  background: var(--ppb-blue);
  color: #fff !important;
  padding: 11px 18px;
  border-radius: var(--ppb-radius);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  text-align: center;
  transition: background .15s; }

.ppb-cta:hover {
  background: var(--ppb-blue-dk);
  color: #fff !important; }

.ppb-cta.ppb-cta-teal {
  background: var(--ppb-teal); }

.ppb-cta.ppb-cta-teal:hover {
  background: #0a6057; }

.ppb-cta.ppb-cta-dark {
  background: var(--ppb-navy); }

.ppb-cta.ppb-cta-dark:hover {
  background: #0e1520; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .ppb-hero {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 24px; }
  .ppb-hero-svg-wrap {
    display: none; }
  .ppb-layout {
    grid-template-columns: 1fr; }
  .ppb-sidebar {
    position: static; }
  .ppb-dim-grid {
    grid-template-columns: 1fr; }
  .ppb-tol-grid {
    grid-template-columns: 1fr; }
  .ppb-calc-grid {
    grid-template-columns: 1fr; }
  .ppb-toc a {
    padding: 9px 10px;
    font-size: 11px; } }

@media (max-width: 560px) {
  .ppb-hero h1 {
    font-size: 24px; }
  .ppb-guide h2 {
    font-size: 20px; } }

/* ============================================================
   HEADER SEARCH BAR — Longer & More Prominent
   plasticpolybags.com
   Uses EXACT class names confirmed via browser inspection.

   Paste into custom.scss (below the .ppb-guide block).
   Save → Apply theme.
   ============================================================ */
/* ── 1. OUTER DROPDOWN WRAPPER — widen the whole search area ── */
.dropdown--quickSearch.desktop {
  width: 520px !important;
  max-width: 520px !important;
  min-width: 300px !important;
  position: relative !important; }

/* ── 2. FORM & FIELDSET — fill the wrapper ── */
.dropdown--quickSearch.desktop .form,
.dropdown--quickSearch.desktop .form-fieldset,
.dropdown--quickSearch.desktop .form-field {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important; }

/* Make input + button sit side-by-side flush */
.dropdown--quickSearch.desktop .form-field {
  display: flex !important;
  align-items: stretch !important;
  flex-direction: row !important; }

/* ── 3. THE INPUT FIELD ── */
.dropdown--quickSearch.desktop input.form-input[name="search_query"] {
  height: 46px !important;
  line-height: 46px !important;
  font-size: 15px !important;
  padding: 0 16px !important;
  border: 2px solid #0066cc !important;
  border-right: none !important;
  border-radius: 6px 0 0 6px !important;
  background: #ffffff !important;
  color: #1a2a3a !important;
  box-shadow: 0 2px 10px rgba(0, 102, 204, 0.12) !important;
  transition: border-color .2s, box-shadow .2s !important;
  width: 100% !important;
  flex: 1 1 auto !important;
  outline: none !important; }

.dropdown--quickSearch.desktop input.form-input[name="search_query"]:focus {
  border-color: #0052a3 !important;
  border-right: none !important;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.18) !important;
  outline: none !important; }

.dropdown--quickSearch.desktop input.form-input[name="search_query"]::placeholder {
  color: #7a9ab8 !important;
  font-size: 14px !important; }

/* ── 4. BUTTON WRAPPER ── */
.dropdown--quickSearch.desktop .search-icon.submit {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important; }

/* ── 5. THE SUBMIT BUTTON ── */
.dropdown--quickSearch.desktop .button--primary.form-prefixPostfix-button--postfix {
  height: 46px !important;
  width: 52px !important;
  padding: 0 !important;
  background: #0066cc !important;
  border: 2px solid #0066cc !important;
  border-left: none !important;
  border-radius: 0 6px 6px 0 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background .15s, border-color .15s !important;
  margin: 0 !important; }

.dropdown--quickSearch.desktop .button--primary.form-prefixPostfix-button--postfix:hover {
  background: #0052a3 !important;
  border-color: #0052a3 !important; }

/* ── 6. SEARCH ICON SVG — white inside blue button ── */
.dropdown--quickSearch.desktop .header-icon.search-icon {
  fill: #ffffff !important;
  stroke: #ffffff !important;
  width: 20px !important;
  height: 20px !important;
  display: block !important; }

.dropdown--quickSearch.desktop .header-icon.search-icon use {
  fill: #ffffff !important;
  stroke: #ffffff !important; }

/* ── 7. RESULTS DROPDOWN ── */
.quickSearchResults {
  border: 1.5px solid #cce0f5 !important;
  border-top: none !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12) !important;
  background: #ffffff !important; }

.quickSearchResults a:hover,
.quickSearchResults-item:hover {
  background: #e6f0fa !important;
  color: #0066cc !important; }

/* ── 8. MOBILE — full width ── */
@media (max-width: 800px) {
  .dropdown--quickSearch.desktop {
    width: 100% !important;
    max-width: 100% !important; } }

/* ============================================================
   HEADER SEARCH BAR + BOTTOM PADDING — Final Version
   plasticpolybags.com — custom.scss
   DELETE all previous search bar blocks, paste this instead.
   Save → Apply.
   ============================================================ */
/* ── 1. NUKE outer box, glow, white background ── */
#quickSearch,
#quickSearch.dropdown,
#quickSearch.dropdown--quickSearch,
#quickSearch.dropdown--quickSearch.desktop {
  width: 520px !important;
  max-width: 520px !important;
  min-width: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important; }

/* ── 2. CONTAINER inside quickSearch ── */
#quickSearch > .container {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important; }

/* ── 3. FORM — flex row ── */
#quickSearch .form {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important; }

#quickSearch .form-fieldset {
  flex: 1 1 auto !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important; }

#quickSearch .form-field {
  display: flex !important;
  align-items: stretch !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important; }

/* ── 4. INPUT ── */
#quickSearch input[name="search_query"] {
  flex: 1 1 auto !important;
  height: 46px !important;
  font-size: 15px !important;
  padding: 0 16px !important;
  background: #ffffff !important;
  color: #1a2a3a !important;
  border: 2px solid #0066cc !important;
  border-right: none !important;
  border-radius: 6px 0 0 6px !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color .2s !important;
  width: 100% !important; }

#quickSearch input[name="search_query"]:focus {
  border-color: #004eaa !important;
  border-right: none !important;
  box-shadow: none !important;
  outline: none !important; }

#quickSearch input[name="search_query"]::placeholder {
  color: #7a9ab8 !important;
  font-size: 14px !important;
  font-style: italic !important; }

/* ── 5. BUTTON WRAPPER ── */
#quickSearch .search-icon.submit {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 46px !important;
  width: 52px !important;
  background: #0066cc !important;
  background-color: #0066cc !important;
  border: 2px solid #0066cc !important;
  border-left: none !important;
  border-radius: 0 6px 6px 0 !important;
  position: relative !important;
  cursor: pointer !important;
  transition: background-color .15s !important; }

#quickSearch .search-icon.submit:hover {
  background: #0052a3 !important;
  background-color: #0052a3 !important;
  border-color: #0052a3 !important; }

/* ── 6. SUBMIT INPUT inside wrapper — transparent, full cover ── */
#quickSearch .search-icon.submit input[type="submit"],
#quickSearch .search-icon.submit .button--primary {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  z-index: 2 !important; }

/* ── 7. SVG ICON — centered, forced white ── */
#quickSearch .search-icon.submit svg,
#quickSearch .search-icon.submit svg.header-icon,
#quickSearch .search-icon.submit svg.search-icon {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
  pointer-events: none !important;
  /* Force white on any SVG including sprite <use> references */
  filter: brightness(0) invert(1) !important;
  fill: #ffffff !important;
  color: #ffffff !important; }

#quickSearch .search-icon.submit svg use {
  fill: #ffffff !important;
  color: #ffffff !important; }

/* ── 8. RESULTS DROPDOWN ── */
#quickSearch .quickSearchResults,
.quickSearchResults {
  border: 1.5px solid #cce0f5 !important;
  border-top: none !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.14) !important;
  background: #ffffff !important;
  z-index: 9999 !important; }

.quickSearchResults a:hover {
  background: #e6f0fa !important;
  color: #0066cc !important; }

/* ── 9. BOTTOM PAGE PADDING ── */
.page-content,
.container--homepage,
[data-content-region="home_below_menu"],
[data-content-region="home_below_menu--global"],
.heroCarousel + .container,
body.home .page,
body.home .container {
  padding-bottom: 60px !important; }

/* ── 10. MOBILE ── */
@media (max-width: 800px) {
  #quickSearch,
  #quickSearch.dropdown--quickSearch.desktop {
    width: 100% !important;
    max-width: 100% !important; }
  /* ── SEARCH BOX MARGIN + LOGIN/CART ICON SIZE ── */
  /* 1. Remove excess margin from the navUser container */
  ul.navUser-section.navUser-section--alt {
    margin: 0 !important;
    padding: 0 8px !important; }
  /* 2. Add breathing room around the search box within the header */
  #quickSearch {
    margin: 0 16px !important; }
  /* 3. Increase Login and Cart icon size to match search icon */
  .navUser-section--alt .navUser-item .icon,
  .navUser-section--alt .navUser-item svg,
  .navUser-section--alt .navUser-action svg,
  .navUser-section--alt .navUser-action .icon {
    width: 26px !important;
    height: 26px !important; }
  /* 4. Also bump the text/label size if visible */
  .navUser-section--alt .navUser-action {
    font-size: 16px !important; }
  /* ── SEARCH BOX MARGIN + LOGIN/CART ICON SIZE ── */
  /* 1. Remove excess margin from the navUser container */
  ul.navUser-section.navUser-section--alt {
    margin: 0 !important;
    padding: 0 8px !important; }
  /* 2. Add breathing room around the search box within the header */
  #quickSearch {
    margin: 0 16px !important; }
  /* 3. Increase Login and Cart icon size to match search icon */
  .navUser-section--alt .navUser-item .icon,
  .navUser-section--alt .navUser-item svg,
  .navUser-section--alt .navUser-action svg,
  .navUser-section--alt .navUser-action .icon {
    width: 26px !important;
    height: 26px !important; }
  /* 4. Also bump the text/label size if visible */
  .navUser-section--alt .navUser-action {
    font-size: 16px !important; }
  /* ============================================================
   HEADER SEARCH BAR — Final Complete Version
   plasticpolybags.com — custom.scss
   DELETE all previous search bar blocks, paste this instead.
   Save → Apply.
   ============================================================ */
  /* ════════════════════════════════════════════════════════════
   SECTION 1 — STICKY HEADER HEIGHT
   Selector: div#menu-wrapper.single-line.fixed.fixed-again
   Needs to be tall enough to hold 46px search bar + breathing room
   ════════════════════════════════════════════════════════════ */
  #menu-wrapper.single-line.fixed,
  #menu-wrapper.single-line.fixed-again,
  #menu-wrapper.single-line.fixed.fixed-again {
    height: 74px !important;
    min-height: 74px !important;
    display: flex !important;
    align-items: center !important; }
  /* The inner navPages-container that holds everything */
  #menu-wrapper .navPages-container.fixed {
    height: 74px !important;
    min-height: 74px !important;
    display: flex !important;
    align-items: center !important; }
  /* navPages-wider.desktop — the flex row inside */
  #menu-wrapper .navPages-wider.desktop {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    height: 74px !important; }
  /* ════════════════════════════════════════════════════════════
   SECTION 2 — OUTER SEARCH WRAPPER
   Kill the outer box, glow, white background
   ════════════════════════════════════════════════════════════ */
  #quickSearch,
  #quickSearch.dropdown,
  #quickSearch.dropdown--quickSearch,
  #quickSearch.dropdown--quickSearch.desktop {
    width: 480px !important;
    max-width: 480px !important;
    min-width: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 12px !important; }
  #quickSearch > .container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important; }
  /* ════════════════════════════════════════════════════════════
   SECTION 3 — FORM LAYOUT
   ════════════════════════════════════════════════════════════ */
  #quickSearch .form {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important; }
  #quickSearch .form-fieldset {
    flex: 1 1 auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important; }
  #quickSearch .form-field {
    display: flex !important;
    align-items: stretch !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important; }
  /* ════════════════════════════════════════════════════════════
   SECTION 4 — SEARCH INPUT
   ════════════════════════════════════════════════════════════ */
  #quickSearch input[name="search_query"] {
    flex: 1 1 auto !important;
    height: 46px !important;
    font-size: 15px !important;
    padding: 0 16px !important;
    background: #ffffff !important;
    color: #1a2a3a !important;
    border: 2px solid #0066cc !important;
    border-right: none !important;
    border-radius: 6px 0 0 6px !important;
    box-shadow: none !important;
    outline: none !important;
    transition: border-color .2s !important;
    width: 100% !important; }
  #quickSearch input[name="search_query"]:focus {
    border-color: #004eaa !important;
    border-right: none !important;
    box-shadow: none !important;
    outline: none !important; }
  #quickSearch input[name="search_query"]::placeholder {
    color: #7a9ab8 !important;
    font-size: 14px !important;
    font-style: italic !important; }
  /* ════════════════════════════════════════════════════════════
   SECTION 5 — SEARCH BUTTON WRAPPER
   div.search-icon.submit is the blue box, not the <input>
   ════════════════════════════════════════════════════════════ */
  #quickSearch .search-icon.submit {
    flex-shrink: 0 !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 46px !important;
    width: 52px !important;
    background: #0066cc !important;
    background-color: #0066cc !important;
    border: 2px solid #0066cc !important;
    border-left: none !important;
    border-radius: 0 6px 6px 0 !important;
    cursor: pointer !important;
    transition: background-color .15s !important; }
  #quickSearch .search-icon.submit:hover {
    background: #0052a3 !important;
    background-color: #0052a3 !important;
    border-color: #0052a3 !important; }
  /* ════════════════════════════════════════════════════════════
   SECTION 6 — SUBMIT INPUT (invisible overlay for click capture)
   ════════════════════════════════════════════════════════════ */
  #quickSearch .search-icon.submit input[type="submit"],
  #quickSearch .search-icon.submit .button--primary {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    z-index: 2 !important; }
  /* ════════════════════════════════════════════════════════════
   SECTION 7 — SEARCH SVG ICON (force white)
   svg.header-icon.search-icon — 20×20 sprite-based
   filter: brightness(0) invert(1) converts any color to white
   ════════════════════════════════════════════════════════════ */
  #quickSearch .search-icon.submit svg.header-icon.search-icon,
  #quickSearch .search-icon.submit svg {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
    pointer-events: none !important;
    filter: brightness(0) invert(1) !important;
    fill: #ffffff !important;
    color: #ffffff !important; }
  #quickSearch .search-icon.submit svg use {
    fill: #ffffff !important;
    color: #ffffff !important; }
  /* ════════════════════════════════════════════════════════════
   SECTION 8 — LOGIN & CART ICONS
   svg.header-icon.account-icon  →  Login/My Account
   svg.header-icon.cart-icon     →  Cart
   Both are inside div.user-icons
   Currently 20×20 — bump to 28×28 to match search button height
   ════════════════════════════════════════════════════════════ */
  /* Icon wrappers — vertically center them */
  .user-icons {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-shrink: 0 !important; }
  .user-icons .navUser-action {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 46px !important; }
  /* Account / Login icon */
  svg.header-icon.account-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    fill: #333333 !important;
    display: block !important; }
  /* Cart icon */
  svg.header-icon.cart-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    fill: #333333 !important;
    display: block !important; }
  /* Cart count pill — reposition after icon resize */
  .countPill.cart-quantity {
    font-size: 11px !important;
    min-width: 18px !important;
    height: 18px !important;
    line-height: 18px !important; }
  /* ════════════════════════════════════════════════════════════
   SECTION 9 — SEARCH RESULTS DROPDOWN
   ════════════════════════════════════════════════════════════ */
  #quickSearch .quickSearchResults,
  .quickSearchResults {
    border: 1.5px solid #cce0f5 !important;
    border-top: none !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.14) !important;
    background: #ffffff !important;
    z-index: 9999 !important; }
  .quickSearchResults a:hover {
    background: #e6f0fa !important;
    color: #0066cc !important; }
  /* ════════════════════════════════════════════════════════════
   SECTION 10 — BOTTOM PAGE PADDING
   ════════════════════════════════════════════════════════════ */
  .page-content,
  .container--homepage,
  [data-content-region="home_below_menu"],
  [data-content-region="home_below_carousel"],
  body.home .page {
    padding-bottom: 60px !important; }
  /* ════════════════════════════════════════════════════════════
   SECTION 11 — MOBILE
   ════════════════════════════════════════════════════════════ */ }

@media (max-width: 800px) and (max-width: 800px) {
  #quickSearch,
  #quickSearch.dropdown--quickSearch.desktop {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important; } }

@media (max-width: 800px) {
  /* ── HOMEPAGE MEASURE SECTION ── */ }

@media (max-width: 800px) and (max-width: 760px) {
  #ppb-measure-section {
    grid-template-columns: 1fr !important;
    padding: 28px 22px !important;
    gap: 28px !important; } }
