:root{
      --bg:#ffffff;
      --ink:#111827;
      --muted:#4b5563;
      --line:#e5e7eb;
      --soft:#f9fafb;
      --soft2:#f3f4f6;
      --brand:#cc0000;
      --brandDark:#a40000;
      --blue:#0a5bd3;
      --green:#0e9f6e;
      --shadow: 0 10px 28px rgba(0,0,0,.08);
      --max:1140px;
    }
    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
      background: var(--bg);
      color: var(--ink);
      overflow-x:hidden;
    }
    a{ color:inherit; text-decoration:none; }
    .wrap{ max-width:var(--max); margin:0 auto; padding: 14px 16px 104px; }
    .sr{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

    header{
      position:sticky; top:0; z-index:60;
      background:#fff;
      border-bottom:1px solid var(--line);
    }
    .utility{
      background: var(--soft);
      border-bottom: 1px solid var(--line);
      font-size:12px;
      color: var(--muted);
    }
    .utility .in{
      max-width:var(--max);
      margin:0 auto;
      padding: 8px 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
    }
    .utility b{ color:#1f2937; }
    .utility .right{
      display:flex; gap:12px; flex-wrap:wrap;
      font-weight:900;
    }
    .utility .right a{ text-decoration:underline; text-underline-offset:2px; }

    .mainbar{
      max-width:var(--max);
      margin:0 auto;
      padding: 10px 16px;
      display:flex;
      align-items:center;
      gap:12px;
    }
    .logo{
      display:flex; align-items:center; gap:10px;
      min-width:0;
    }
    .mark{
      width:38px; height:38px; border-radius:10px;
      background: linear-gradient(135deg, var(--brand), #ff4d4d);
      color:#fff;
      display:grid; place-items:center;
      font-weight:1000;
      box-shadow: 0 10px 22px rgba(204,0,0,.16);
    }
    .logo b{ font-size:15px; line-height:1.1; letter-spacing:.1px; }
    .logo small{ display:block; color: var(--muted); font-size:12px; margin-top:2px; }

    .search{
      flex:1;
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
      background:#fff;
      border: 2px solid #d1d5db;
      border-radius: 999px;
      padding: 8px 10px 8px 12px;
    }
    .search:focus-within{ border-color:#111827; }
    .search svg{ width:18px; height:18px; color:#6b7280; flex:0 0 auto; }
    .search input{
      width:100%;
      border:0;
      outline:none;
      background:transparent;
      font-size:14px;
      color: var(--ink);
    }
    .search input::placeholder{ color:#9ca3af; }
    .search button{
      border:0;
      background: var(--brand);
      color:#fff;
      font-weight:1000;
      padding: 10px 14px;
      border-radius: 999px;
      cursor:pointer;
      flex:0 0 auto;
    }

    .actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .act{
      display:flex;
      align-items:center;
      gap:8px;
      padding: 10px 12px;
      border-radius: 999px;
      border:1px solid var(--line);
      background:#fff;
      font-size:12px;
      font-weight:1000;
      cursor:pointer;
      white-space:nowrap;
    }
    .act svg{ width:18px; height:18px; color:#374151; }

    .nav{
      max-width:var(--max);
      margin:0 auto;
      padding: 0 16px 12px;
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .chip{
      border:1px solid var(--line);
      background:#fff;
      padding: 8px 10px;
      border-radius: 999px;
      font-size:12px;
      font-weight:1000;
      color:#1f2937;
      cursor:pointer;
    }
    .chip.hot{
      border-color: rgba(204,0,0,.22);
      background: rgba(204,0,0,.06);
      color: var(--brandDark);
    }
    .chip.blue{
      border-color: rgba(10,91,211,.25);
      background: rgba(10,91,211,.08);
      color:#083d92;
    }

    .hero{
      border:1px solid var(--line);
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(204,0,0,.08), rgba(10,91,211,.06));
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .hero .in{
      padding: 16px;
      display:grid;
      gap:12px;
    }
    .kicker{
      display:flex; gap:8px; flex-wrap:wrap; align-items:center;
    }
    .tag{
      display:inline-flex; align-items:center; gap:6px;
      padding: 6px 10px;
      border-radius: 999px;
      background:#fff;
      border:1px solid var(--line);
      color: var(--muted);
      font-size:12px;
      font-weight:1000;
      white-space:nowrap;
    }
    h1{
      margin:0;
      font-size:26px;
      line-height:1.08;
      letter-spacing:-.3px;
    }
    .lead{
      margin:0;
      color: var(--muted);
      font-size:14px;
      line-height:1.6;
    }
    .row{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 12px 14px;
      border-radius: 12px;
      border:1px solid var(--line);
      background:#fff;
      font-weight:1000;
      font-size:13px;
      cursor:pointer;
    }
    .btn.red{
      background: var(--brand);
      border-color: rgba(204,0,0,.25);
      color:#fff;
    }
    .btn.blue{
      background: var(--blue);
      border-color: rgba(10,91,211,.25);
      color:#fff;
    }
    .btn.ghost{ background: var(--soft); }

    .fine{
      margin-top:6px;
      color:#6b7280;
      font-size:12px;
      line-height:1.5;
    }

    .trust{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .tcard{
      border:1px solid var(--line);
      background:#fff;
      border-radius: 14px;
      padding: 12px 14px;
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .dot{
      width:34px; height:34px; border-radius:10px;
      display:grid; place-items:center;
      background: var(--soft2);
      border:1px solid var(--line);
      flex:0 0 auto;
    }
    .tcard b{ font-size:13px; }
    .tcard p{ margin:4px 0 0; color: var(--muted); font-size:12px; line-height:1.5; }

    section{ margin-top:18px; }
    .title{
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
      margin: 14px 2px 10px;
    }
    .title h2{ margin:0; font-size:16px; letter-spacing:.1px; }
    .title span{ color: var(--muted); font-size:12px; font-weight:1000; }

    .rail{
      display:flex;
      gap:12px;
      overflow:auto;
      padding-bottom: 4px;
      scroll-snap-type: x mandatory;
    }
    .deal{
      min-width: 260px;
      scroll-snap-align: start;
      border:1px solid var(--line);
      background:#fff;
      border-radius: 16px;
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .dealTop{
      padding: 12px 14px;
      background: var(--soft);
      border-bottom: 1px solid var(--line);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size:11px;
      font-weight:1000;
      border:1px solid var(--line);
      background:#fff;
      color: var(--muted);
      white-space:nowrap;
    }
    .badge.red{ border-color: rgba(204,0,0,.25); background: rgba(204,0,0,.06); color: var(--brandDark); }
    .badge.green{ border-color: rgba(14,159,110,.25); background: rgba(14,159,110,.08); color:#0b6b4b; }
    .dealBody{ padding: 12px 14px 14px; }
    .dealBody b{ display:block; font-size:13px; }
    .dealBody p{ margin:6px 0 0; color: var(--muted); font-size:12px; line-height:1.5; }

    .grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .card{
      border:1px solid var(--line);
      background:#fff;
      border-radius: 16px;
      overflow:hidden;
      box-shadow: var(--shadow);
    }
    .pimg{
      min-height:188px;
      background: linear-gradient(135deg, rgba(10,91,211,.10), rgba(204,0,0,.10));
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
      padding:16px;
      overflow:hidden;
    }
    .product-photo{
      width:100%;
      height:100%;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:6px;
    }
    .product-photo img{
      max-height:100%;
      width:auto;
      object-fit:contain;
    }
    .product-photo.placeholder{
      border:1px dashed rgba(17,24,39,.2);
      border-radius:12px;
      background:rgba(255,255,255,.3);
    }
    .pill{
      position:absolute; top:10px; left:10px;
      background:#fff;
      border:1px solid var(--line);
      padding: 6px 10px;
      border-radius: 999px;
      font-size:11px;
      font-weight:1000;
      color: var(--muted);
    }
    .woo-flash{
      position:absolute;
      top:10px;
      right:10px;
    }
    .woo-flash .onsale{
      display:inline-block;
      padding:4px 10px;
      background:#fff;
      border-radius:999px;
      border:1px solid rgba(204,0,0,.25);
      font-size:11px;
      font-weight:1000;
      color:var(--brandDark);
    }
    .tagline{
      position:absolute;
      bottom:12px;
      left:16px;
      right:16px;
      text-align:center;
      font-size:12px;
      font-weight:900;
      color:#111827;
    }
    .body{ padding: 12px 14px 14px; }
    .name{ font-weight:1000; font-size:14px; margin:0; }
    .name a{
      color:inherit;
      text-decoration:none;
    }
    .name a:hover{text-decoration:underline;}
    .desc{ margin:6px 0 0; color: var(--muted); font-size:12px; line-height:1.5; }
    .meta{
      margin-top:10px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      flex-wrap:wrap;
    }
    .stars{
      display:inline-flex; align-items:center; gap:8px;
      font-size:12px; font-weight:1000;
      color:#1f2937;
    }
    .stars .star-rating{
      margin:0;
    }
    .stars .star-rating span::before,
    .stars .star-rating::before{
      color:#fbbf24;
    }
    .stars .rating-value{ font-weight:inherit; }
    .stars small{ font-weight:1000; color: var(--muted); }
    .priceWrap{
      font-weight:1100;
      color:#111827;
      font-size:14px;
      text-align:right;
    }
    .priceWrap .price{
      font-size:inherit;
      font-weight:inherit;
      color:inherit;
    }
    .ctaRow{
      margin-top:10px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .woo-add-to-cart{ width:100%; }
    .woo-add-to-cart .button,
    .woo-add-to-cart .button.loading,
    .woo-add-to-cart .button.added{
      width:100%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 14px;
      border-radius:12px;
      border:1px solid rgba(204,0,0,.25);
      background:var(--brand);
      color:#fff;
      font-weight:1000;
      font-size:13px;
      text-decoration:none;
    }
    .woo-add-to-cart .button:hover{ opacity:.9; }
    .woo-add-to-cart .added_to_cart{
      display:block;
      margin-top:6px;
      text-align:center;
      font-size:11px;
      color:var(--muted);
      text-decoration:none;
    }

    .locator{
      border:1px solid var(--line);
      background:#fff;
      border-radius: 16px;
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .locator .in{
      padding: 14px;
      display:grid;
      gap:10px;
    }
    .locRow{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .locInput{
      flex:1;
      min-width: 180px;
      display:flex; align-items:center; gap:8px;
      background: var(--soft);
      border:1px solid var(--line);
      border-radius: 12px;
      padding: 10px 12px;
    }
    .locInput input{
      width:100%;
      border:0;
      background:transparent;
      outline:none;
      font-size:14px;
    }
    .locMap{
      height: 140px;
      border-top: 1px solid var(--line);
      background: linear-gradient(135deg, rgba(17,24,39,.04), rgba(204,0,0,.06));
      display:grid; place-items:center;
      color:#4b5563;
      font-weight:900;
      font-size:12px;
    }

    .reviews{ display:grid; gap:10px; }
    .review{
      border:1px solid var(--line);
      background:#fff;
      border-radius: 16px;
      padding: 12px 14px;
      box-shadow: var(--shadow);
      display:flex; gap:10px;
    }
    .avatar{
      width:40px; height:40px; border-radius:12px;
      display:grid; place-items:center;
      background: var(--soft2);
      border:1px solid var(--line);
      font-weight:1100;
      color:#22324a;
      flex:0 0 auto;
    }
    .review h3{ margin:0; font-size:13px; }
    .review p{ margin:6px 0 0; color: var(--muted); font-size:12px; line-height:1.55; }

    details{
      border:1px solid var(--line);
      background:#fff;
      border-radius: 16px;
      padding: 12px 14px;
      box-shadow: var(--shadow);
    }
    details + details{ margin-top:10px; }
    summary{
      cursor:pointer;
      list-style:none;
      font-weight:1100;
      font-size:13px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    summary::-webkit-details-marker{ display:none; }
    .faq p{ margin:10px 0 0; color: var(--muted); font-size:12px; line-height:1.65; }

    footer{
      margin-top:18px;
      border-top:1px solid var(--line);
      padding: 16px 0 0;
      color: var(--muted);
      font-size:12px;
    }
    .footlinks{
      display:flex; gap:12px; flex-wrap:wrap;
      font-weight:1000;
      color:#1f2937;
      margin-bottom:10px;
    }
    .footlinks a{ text-decoration:underline; text-underline-offset:2px; }

    .bottom{
      position:fixed; left:0; right:0; bottom:0;
      background:#fff;
      border-top:1px solid var(--line);
      padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
      z-index:70;
    }
    .bottomin{
      max-width:var(--max);
      margin:0 auto;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }

    .modal{
      position:fixed; inset:0;
      display:none;
      place-items:center;
      padding: 18px 16px;
      background: rgba(17,24,39,.55);
      z-index:90;
    }
    .modal.open{ display:grid; }
    .sheet{
      width:min(860px, 100%);
      background:#fff;
      border:1px solid var(--line);
      border-radius: 18px;
      box-shadow: 0 18px 70px rgba(0,0,0,.25);
      overflow:hidden;
    }
    .sheethead{
      padding: 12px 14px;
      display:flex; justify-content:space-between; align-items:center; gap:10px;
      border-bottom:1px solid var(--line);
      background: var(--soft);
    }
    .sheethead b{ font-size:13px; }
    .x{
      width:38px; height:38px; border-radius:12px;
      display:grid; place-items:center;
      border:1px solid var(--line);
      background:#fff;
      cursor:pointer;
      font-weight:1100;
    }
    .sheetbody{ padding: 12px 14px 14px; }
    .sheetbody p, .sheetbody li{
      color: var(--muted);
      font-size: 12px;
      line-height:1.7;
    }
    .sheetbody ul{ margin:10px 0 0; padding-left:18px; }

    @media (min-width:720px){
      h1{ font-size:34px; }
      .hero .in{ grid-template-columns: 1.15fr .85fr; align-items:center; }
      .trust{ grid-template-columns: repeat(3, 1fr); }
      .grid{ grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width:980px){
      .grid{ grid-template-columns: repeat(4, 1fr); }
      .deal{ min-width: 320px; }
    }
.page-wrap {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.page-hero-block {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.page-hero-block h1 {
  margin: 0;
  font-size: 26px;
}
.page-hero-block .lead {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}
.page-content-block {
  padding: 24px;
}
.page-content-block .reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.page-content-block .faq details {
  border-bottom: 1px solid var(--line);
}
.page-content-block.policy ul {
  padding-left: 20px;
}
.page-content-block.policy li {
  color: var(--muted);
}
@media (max-width: 600px) {
  .page-wrap {
    border-radius: 12px;
  }
  .page-hero-block {
    padding: 18px;
  }
  .page-content-block {
    padding: 18px;
  }
}
.rating-pill {
  font-weight: 700;
  color: var(--ink);
}
.dealAction {
  margin-top: 10px;
}

.search-status {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .mainbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .searchwrap,
  .masthead-search,
  .search {
    width: 100%;
  }
  .actions {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  .actions .act {
    flex: 1 1 auto;
    justify-content: center;
  }
  .nav {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
  }
  .nav::-webkit-scrollbar {
    display: none;
  }
  .hero .in,
  .locator .in,
  .deal-rail,
  .reviews {
    display: flex;
    flex-direction: column;
  }
  .deal-rail {
    overflow-x: auto;
    gap: 16px;
  }
  .deal-rail .deal {
    min-width: 280px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
    margin: 0 16px;
  }
  .nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 16px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .nav.is-open {
    max-height: 260px;
    margin-top: 6px;
  }
}
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
}
.shop-filter {
  margin: 20px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop-filter label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.shop-filter input {
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 15px;
}
.shop-filter input:focus {
  outline: none;
  border-color: var(--ink);
}
.shop-filter .fine {
  margin: 0;
}
.card.is-hidden {
  display: none;
}
.compliance {
  margin: 70px 0;
  background: var(--soft);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--line);
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.compliance-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.compliance-card .badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--soft2);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--muted);
}
.text-btn {
  border: 0;
  background: none;
  color: var(--blue);
  font-weight: 700;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
.business-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.business-card dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 0;
}
.business-card dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.business-card dd {
  margin: 0;
  font-weight: 700;
}
.business-card .address span {
  display: block;
}
.guides {
  margin: 70px 0;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.guide-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guide-card .eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  margin: 0;
}
.guide-card .product {
  font-weight: 600;
  margin: 0;
}
.keyword-tags {
  list-style: none;
  padding: 0;
  margin: 4px 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.keyword-tags li {
  background: var(--soft2);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--muted);
}
.foot-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 16px 0;
  font-size: 13px;
  color: var(--muted);
}
.foot-contact a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  .compliance {
    padding: 20px;
  }
  .business-card dl,
  .guide-grid {
    grid-template-columns: 1fr;
  }
}

.compliance-footer {
  margin-top: 32px;
}
