/*
 * Saim's Coupon Hub v3.0.3
 * OFFER CARD ONLY FIX
 * Desktop: vertical dashed ticket line with half-cut circles on top/bottom card edges.
 * Mobile: horizontal dashed ticket line with half-cut circles on left/right card edges.
 * Hero, sidebar, FAQ, SEO, modal and admin logic are untouched.
 */

/* ===== Offer list spacing ===== */
body.single-cs_store .csz-offer-list{
  display:flex !important;
  flex-direction:column !important;
  gap:14px !important;
}

/* ===== DESKTOP OFFER CARD ===== */
body.single-cs_store .csz-offer-card{
  position:relative !important;
  width:100% !important;
  min-height:116px !important;
  display:grid !important;
  grid-template-columns:148px minmax(0,1fr) 238px !important;
  grid-template-rows:1fr !important;
  align-items:stretch !important;
  gap:0 !important;
  padding:0 !important;
  margin:0 !important;
  background:#fff !important;
  border:0 !important;
  border-radius:16px !important;
  overflow:hidden !important;
  box-shadow:0 5px 16px rgba(15,23,42,.06) !important;
}

body.single-cs_store .csz-offer-card::before,
body.single-cs_store .csz-offer-card::after{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  left:136px !important;
  width:24px !important;
  height:24px !important;
  border-radius:50% !important;
  background:#eef3f0 !important;
  border:1px solid #e5e7eb !important;
  z-index:9 !important;
  pointer-events:none !important;
}
body.single-cs_store .csz-offer-card::before{top:-12px !important;bottom:auto !important;}
body.single-cs_store .csz-offer-card::after{bottom:-12px !important;top:auto !important;}

/* Let inner mobile wrapper expose badge/button to desktop grid */
body.single-cs_store .csz-offer-card > .csz-offer-top-mobile{
  display:contents !important;
  position:static !important;
  width:auto !important;
  height:auto !important;
  min-height:0 !important;
  padding:0 !important;
  margin:0 !important;
}

body.single-cs_store .csz-offer-card .csz-mobile-dashed-line{
  display:none !important;
}

/* Desktop badge column + vertical dashed line */
body.single-cs_store .csz-offer-card .csz-offer-badge{
  grid-column:1 !important;
  grid-row:1 !important;
  position:relative !important;
  top:auto !important;
  left:auto !important;
  right:auto !important;
  bottom:auto !important;
  width:148px !important;
  min-width:148px !important;
  max-width:148px !important;
  min-height:116px !important;
  height:100% !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  padding:14px 12px !important;
  margin:0 !important;
  text-align:center !important;
  background:transparent !important;
  border:0 !important;
  border-right:5px dashed #e5e7eb !important;
  border-bottom:0 !important;
  z-index:3 !important;
}

/* Desktop half-cut circles are attached to the card itself, not the badge,
   so the bottom circle always sits on the real bottom edge even when card height changes. */
body.single-cs_store .csz-offer-card .csz-offer-badge::before,
body.single-cs_store .csz-offer-card .csz-offer-badge::after{
  content:none !important;
  display:none !important;
}

/* Badge typography / images */
body.single-cs_store .csz-offer-card .csz-offer-badge small{
  display:block !important;
  color:#64748b !important;
  font-size:12px !important;
  line-height:1 !important;
  font-weight:900 !important;
  letter-spacing:.04em !important;
  text-transform:uppercase !important;
}
body.single-cs_store .csz-offer-card .csz-offer-badge strong{
  display:block !important;
  color:#0f172a !important;
  font-size:38px !important;
  line-height:.88 !important;
  font-weight:950 !important;
  letter-spacing:-.045em !important;
}
body.single-cs_store .csz-offer-card .csz-offer-badge em{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin-top:3px !important;
  padding:3px 8px !important;
  border-radius:3px !important;
  background:#ef3d2f !important;
  color:#fff !important;
  font-size:17px !important;
  line-height:1 !important;
  font-weight:950 !important;
  font-style:normal !important;
}
body.single-cs_store .csz-badge-image{
  width:118px !important;
  height:74px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
body.single-cs_store .csz-badge-image img{
  max-width:112px !important;
  max-height:68px !important;
  width:auto !important;
  height:auto !important;
  object-fit:contain !important;
}
body.single-cs_store .csz-custom-badge-text,
body.single-cs_store .csz-special{
  font-size:16px !important;
  line-height:1.1 !important;
  font-weight:950 !important;
  color:#071229 !important;
  text-transform:uppercase !important;
}

/* Desktop content: compact coupon-card feel */
body.single-cs_store .csz-offer-card .csz-offer-main{
  grid-column:2 !important;
  grid-row:1 !important;
  min-width:0 !important;
  width:100% !important;
  align-self:center !important;
  padding:15px 22px !important;
  margin:0 !important;
  text-align:left !important;
  z-index:2 !important;
}
body.single-cs_store .csz-offer-card .csz-tag.csz-exclusive{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin:0 0 7px !important;
  padding:5px 9px !important;
  border-radius:5px !important;
  background:#ffd56b !important;
  color:#6d3d00 !important;
  font-size:12px !important;
  line-height:1 !important;
  font-weight:900 !important;
}
body.single-cs_store .csz-offer-card .csz-offer-main h2{
  margin:0 0 9px !important;
  color:#071229 !important;
  font-size:clamp(20px,1.55vw,24px) !important;
  line-height:1.16 !important;
  font-weight:550 !important;
  letter-spacing:-.03em !important;
  white-space:normal !important;
  overflow-wrap:anywhere !important;
  text-align:left !important;
}
body.single-cs_store .csz-offer-card .csz-meta{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  flex-wrap:wrap !important;
  gap:7px !important;
  margin:0 !important;
}
body.single-cs_store .csz-offer-card .csz-meta span{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin:0 !important;
  padding:5px 9px !important;
  border-radius:999px !important;
  background:#f1f5f9 !important;
  color:#475569 !important;
  font-size:12px !important;
  line-height:1 !important;
  font-weight:800 !important;
  white-space:nowrap !important;
}
body.single-cs_store .csz-offer-card .csz-meta span:first-child{
  background:#dcfce7 !important;
  color:#16a34a !important;
}

/* Desktop CTA column */
body.single-cs_store .csz-offer-card .csz-cta-wrap{
  grid-column:3 !important;
  grid-row:1 !important;
  width:238px !important;
  min-width:238px !important;
  height:100% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  align-self:stretch !important;
  padding:0 28px 0 10px !important;
  margin:0 !important;
  position:relative !important;
  inset:auto !important;
  z-index:4 !important;
}

/* CTA base + previous peel animation */
body.single-cs_store .csz-offer-card .csz-cta{
  width:210px !important;
  min-width:210px !important;
  max-width:210px !important;
  height:54px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  position:relative !important;
  overflow:hidden !important;
  isolation:isolate !important;
  visibility:visible !important;
  opacity:1 !important;
  border:0 !important;
  border-radius:999px !important;
  padding:0 24px !important;
  color:#fff !important;
  text-decoration:none !important;
  cursor:pointer !important;
  font-size:18px !important;
  line-height:1 !important;
  font-weight:950 !important;
  letter-spacing:.02em !important;
  transform:none !important;
  box-shadow:0 5px 12px rgba(15,23,42,.12) !important;
  transition:transform .25s ease,box-shadow .25s ease !important;
}
body.single-cs_store .csz-offer-card .csz-cta:hover,
body.single-cs_store .csz-offer-card .csz-cta:focus{
  color:#fff !important;
  text-decoration:none !important;
  transform:translateY(-1px) !important;
  box-shadow:0 8px 18px rgba(15,23,42,.16) !important;
}
body.single-cs_store .csz-offer-card .csz-cta-code,
body.single-cs_store .csz-offer-card .csz-cta-code:hover,
body.single-cs_store .csz-offer-card .csz-cta-code:focus{
  background:#2b2c30 !important;
  color:#fff !important;
}
body.single-cs_store .csz-offer-card .csz-cta-code-peek{
  position:absolute !important;
  top:50% !important;
  right:22px !important;
  transform:translateY(-50%) !important;
  z-index:1 !important;
  pointer-events:none !important;
  color:#fff !important;
  font-size:14px !important;
  line-height:1 !important;
  font-weight:900 !important;
  letter-spacing:1.5px !important;
  white-space:nowrap !important;
  opacity:1 !important;
  display:block !important;
}
body.single-cs_store .csz-offer-card .csz-cta-code::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:2 !important;
  pointer-events:none !important;
  background:#30b180 !important;
  clip-path:polygon(0 0,calc(100% - 30px) 0,100% 30px,100% 100%,0 100%) !important;
  transition:clip-path .45s cubic-bezier(.2,.8,.2,1) !important;
}
body.single-cs_store .csz-offer-card .csz-cta-code::after{
  content:"" !important;
  position:absolute !important;
  top:0 !important;
  right:0 !important;
  z-index:3 !important;
  pointer-events:none !important;
  width:30px !important;
  height:30px !important;
  background:linear-gradient(225deg,transparent 50%,#8bd8b9 50%,#e3fff1 100%) !important;
  border-bottom-left-radius:26px !important;
  box-shadow:-3px 3px 7px rgba(15,23,42,.22) !important;
  transition:all .45s cubic-bezier(.2,.8,.2,1) !important;
}
body.single-cs_store .csz-offer-card .csz-cta-code .csz-cta-text{
  position:relative !important;
  z-index:4 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:#fff !important;
  transform:translateX(-7px) !important;
  transition:transform .35s ease !important;
}
body.single-cs_store .csz-offer-card .csz-cta-code:hover::before,
body.single-cs_store .csz-offer-card .csz-cta-code:focus::before{
  clip-path:polygon(0 0,calc(100% - 72px) 0,calc(100% - 14px) 100%,0 100%) !important;
}
body.single-cs_store .csz-offer-card .csz-cta-code:hover::after,
body.single-cs_store .csz-offer-card .csz-cta-code:focus::after{
  right:14px !important;
  width:58px !important;
  height:58px !important;
  border-bottom-left-radius:52px !important;
  box-shadow:-5px 5px 12px rgba(15,23,42,.28) !important;
}
body.single-cs_store .csz-offer-card .csz-cta-deal,
body.single-cs_store .csz-offer-card .csz-cta-deal:hover,
body.single-cs_store .csz-offer-card .csz-cta-deal:focus{
  background:#2078f4 !important;
  color:#fff !important;
}
body.single-cs_store .csz-offer-card .csz-cta-deal::before,
body.single-cs_store .csz-offer-card .csz-cta-deal::after{
  content:none !important;
  display:none !important;
}

body.single-cs_store .csz-offer-card .csz-offer-badge {
    grid-column: 1 !important;
    grid-row: 1 !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 168px !important;
    min-width: 148px !important;
    max-width: 152px !important;
    min-height: 116px !important;
    height: 105% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 12px !important;
    margin: 0 !important;
    text-align: center !important;
    background: transparent !important;
    border: 0 !important;
    border-right: 5px dashed #e5e7eb !important;
    border-bottom: 0 !important;
    z-index: 3 !important;
}
.single-cs_store .csz-offer-card::before
  {
      background: #e3e8e6 !important;
  }
  
  .single-cs_store .csz-offer-card::after
{
      background: #e3e8e6 !important;
  }
  
.csz-store-card>.csz-logo-orb {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
}

.csz-store-card {
    padding: 142px 36px 36px;
    min-height: 462px;
    top: -220px !important;
    position: relative;
    text-align: center;
    overflow: visible;
}
  .csz-menu-card {
    padding: 28px 30px;
    margin-top: -230px !important;
}

.csz-content {
    min-width: 0;
    width: 100%;
    margin-top: -60px !important;
}

.csz-breadcrumb {
    width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  position: relative;
  overflow: hidden;
    
}
.csz-modal-header-band
 {
    margin: -30px -70px 32px;
    height: 52px;
    background: linear-gradient(135deg, #13a56e, #39cc96);
    border-radius: 30px 30px 0px 0px;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0 42px;
    color: #071229;
    font-weight: 950;
    font-size: 25px;
    letter-spacing: -.02em;
}
.csz-ticket-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    margin: 0 0 8px;
}

.csz-ticket-copy {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 64%;
    transform: translate(-50%, -50%);
    min-width: 160px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #38c78c, #27b77b);
    color: #fff;
    font-size: 22px;
    font-weight: 650;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(39, 183, 123, .28);
}
.csz-ticket-wrap {
    width: min(380px, 86vw);
    aspect-ratio: 380 / 320;
    margin: 0 auto 4px;
    position: relative;
    display: block;
}
.csz-ticket-copy {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 74%;
    transform: translate(-50%, -50%);
    min-width: 120px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #38c78c, #27b77b);
    color: #fff;
    font-size: 15px;
    font-weight: 650;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(39, 183, 123, .28);
}

/* Center coupon code inside popup ticket */
.csz-ticket-wrap {
  position: relative !important;
}

.csz-ticket-code {
  position: absolute !important;
  left: 50% !important;
  top: 47% !important;
  width: 62% !important;
  max-width: 62% !important;

  transform: translate(-50%, -50%) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: clip !important;

  line-height: 1 !important;
  letter-spacing: -0.04em !important;
}





/* ===== TABLET ===== */
@media (max-width:1100px) and (min-width:761px){
  body.single-cs_store .csz-offer-card{
    grid-template-columns:132px minmax(0,1fr) 205px !important;
    min-height:110px !important;
  }
  body.single-cs_store .csz-offer-card::before,
  body.single-cs_store .csz-offer-card::after{
    left:120px !important;
  }
  body.single-cs_store .csz-offer-card .csz-offer-badge{
    width:132px !important;
    min-width:132px !important;
    max-width:132px !important;
    min-height:110px !important;
    padding:12px 10px !important;
  }
  body.single-cs_store .csz-offer-card .csz-offer-badge strong{font-size:34px !important;}
  body.single-cs_store .csz-offer-card .csz-offer-main{padding:14px 18px !important;}
  body.single-cs_store .csz-offer-card .csz-offer-main h2{font-size:20px !important;}
  body.single-cs_store .csz-offer-card .csz-cta-wrap{width:205px !important;min-width:205px !important;padding-right:20px !important;}
  body.single-cs_store .csz-offer-card .csz-cta{width:178px !important;min-width:178px !important;max-width:178px !important;height:50px !important;font-size:16px !important;}
}

/* ===== MOBILE OFFER CARD ===== */
@media (max-width:760px){
  body.single-cs_store .csz-offer-list{
    gap:18px !important;
  }

  body.single-cs_store .csz-offer-card{
    position:relative !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    grid-template-rows:88px auto !important;
    width:100% !important;
    min-height:0 !important;
    padding:0 !important;
    margin:0 0 12px !important;
    background:#fff !important;
    border:0 !important;
    border-radius:14px !important;
    overflow:hidden !important;
    box-shadow:0 8px 22px rgba(15,23,42,.09) !important;
  }

  /* Mobile half-cut circles exactly on left/right card edges, centered on dashed line */
  body.single-cs_store .csz-offer-card::before,
  body.single-cs_store .csz-offer-card::after{
    content:"" !important;
    display:block !important;
    position:absolute !important;
    top:88px !important;
    transform:translateY(-50%) !important;
    width:24px !important;
    height:24px !important;
    border-radius:50% !important;
    background:#eef3f0 !important;
    border:1px solid #e5e7eb !important;
    z-index:9 !important;
    pointer-events:none !important;
  }
  body.single-cs_store .csz-offer-card::before{left:-12px !important;right:auto !important;bottom:auto !important;}
  body.single-cs_store .csz-offer-card::after{left:auto !important;right:-12px !important;bottom:auto !important;}

  body.single-cs_store .csz-offer-card > .csz-offer-top-mobile{
    grid-column:1 !important;
    grid-row:1 !important;
    position:relative !important;
    display:block !important;
    width:100% !important;
    height:88px !important;
    min-height:88px !important;
    padding:0 !important;
    margin:0 !important;
  }

  /* Horizontal dashed line must run edge-to-edge between the two circles */
  body.single-cs_store .csz-offer-card .csz-mobile-dashed-line{
    display:block !important;
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    top:auto !important;
    width:100% !important;
    height:0 !important;
    border:0 !important;
    border-bottom:5px dashed #e5e7eb !important;
    z-index:2 !important;
    pointer-events:none !important;
  }

  body.single-cs_store .csz-offer-top-mobile > .csz-offer-badge,
  body.single-cs_store .csz-offer-card .csz-offer-badge{
    position:absolute !important;
    top:8px !important;
    left:20px !important;
    right:auto !important;
    bottom:auto !important;
    width:92px !important;
    min-width:92px !important;
    max-width:92px !important;
    height:72px !important;
    min-height:72px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    padding:7px 5px !important;
    margin:0 !important;
    background:transparent !important;
    border:0 !important;
    text-align:center !important;
    z-index:4 !important;
  }
  body.single-cs_store .csz-offer-card .csz-offer-badge::before,
  body.single-cs_store .csz-offer-card .csz-offer-badge::after{
    content:none !important;
    display:none !important;
  }
  body.single-cs_store .csz-offer-card .csz-offer-badge small{font-size:10px !important;line-height:1 !important;}
  body.single-cs_store .csz-offer-card .csz-offer-badge strong{font-size:30px !important;line-height:.88 !important;}
  body.single-cs_store .csz-offer-card .csz-offer-badge em{font-size:14px !important;padding:2px 6px !important;margin-top:2px !important;}
  body.single-cs_store .csz-badge-image{width:90px !important;height:62px !important;}
  body.single-cs_store .csz-badge-image img{max-width:84px !important;max-height:58px !important;}
  body.single-cs_store .csz-custom-badge-text,
  body.single-cs_store .csz-special{font-size:14px !important;}

  body.single-cs_store .csz-offer-top-mobile > .csz-cta-wrap,
  body.single-cs_store .csz-offer-card .csz-cta-wrap{
    position:absolute !important;
    top:20px !important;
    right:16px !important;
    left:auto !important;
    bottom:auto !important;
    width:auto !important;
    min-width:0 !important;
    height:auto !important;
    display:block !important;
    padding:0 !important;
    margin:0 !important;
    z-index:5 !important;
  }
  body.single-cs_store .csz-offer-card .csz-cta{
    width:132px !important;
    min-width:132px !important;
    max-width:132px !important;
    height:46px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:0 12px !important;
    font-size:14px !important;
    opacity:1 !important;
    visibility:visible !important;
  }
  body.single-cs_store .csz-offer-card .csz-cta-code-peek{
    right:11px !important;
    font-size:11px !important;
    letter-spacing:1px !important;
  }
  body.single-cs_store .csz-offer-card .csz-cta-code .csz-cta-text{transform:translateX(-9px) !important;}
  body.single-cs_store .csz-offer-card .csz-cta-code::before{
    clip-path:polygon(0 0,calc(100% - 22px) 0,100% 22px,100% 100%,0 100%) !important;
  }
  body.single-cs_store .csz-offer-card .csz-cta-code::after{
    width:22px !important;
    height:22px !important;
    border-bottom-left-radius:20px !important;
  }
  body.single-cs_store .csz-offer-card .csz-cta-code:hover::before,
  body.single-cs_store .csz-offer-card .csz-cta-code:focus::before{
    clip-path:polygon(0 0,calc(100% - 50px) 0,calc(100% - 9px) 100%,0 100%) !important;
  }
  body.single-cs_store .csz-offer-card .csz-cta-code:hover::after,
  body.single-cs_store .csz-offer-card .csz-cta-code:focus::after{
    right:9px !important;
    width:46px !important;
    height:46px !important;
    border-bottom-left-radius:38px !important;
  }

  body.single-cs_store .csz-offer-card .csz-offer-main{
    grid-column:1 !important;
    grid-row:2 !important;
    width:100% !important;
    min-width:0 !important;
    display:block !important;
    padding:16px 14px 18px !important;
    margin:0 !important;
    text-align:center !important;
    z-index:1 !important;
  }
  body.single-cs_store .csz-offer-card .csz-tag.csz-exclusive{
    margin:0 auto 12px !important;
    padding:5px 9px !important;
    font-size:12px !important;
  }
  body.single-cs_store .csz-offer-card .csz-offer-main h2{
    font-size:20px !important;
    line-height:1.2 !important;
    margin:0 auto 12px !important;
    max-width:96% !important;
    text-align:center !important;
    letter-spacing:-.03em !important;
  }
  body.single-cs_store .csz-offer-card .csz-meta{
    justify-content:center !important;
    gap:7px !important;
  }
  body.single-cs_store .csz-offer-card .csz-meta span{
    font-size:11px !important;
    padding:5px 8px !important;
  }
  
  body.body.single-cs_store .csz-offer-card::before
  {
      background: #e3e8e6 !important;
  }
  
  body.body.single-cs_store .csz-offer-card::after
{
      background: #e3e8e6 !important;
  }
  
  .csz-modal-header-band {
    margin: -30px -22px 32px -70px;
    height: 52px;
    background: linear-gradient(135deg, #13a56e, #39cc96);
    border-radius: 20px 20px 0px 0px;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0 0 0 62px;
    color: #071229;
    font-weight: 950;
    font-size: 18px;
    letter-spacing: -.02em;
}
  
  
}

@media (max-width:380px){
  body.single-cs_store .csz-offer-card{grid-template-rows:86px auto !important;}
  body.single-cs_store .csz-offer-card::before,
  body.single-cs_store .csz-offer-card::after{top:86px !important;}
  body.single-cs_store .csz-offer-card > .csz-offer-top-mobile{height:86px !important;min-height:86px !important;}
  body.single-cs_store .csz-offer-top-mobile > .csz-offer-badge,
  body.single-cs_store .csz-offer-card .csz-offer-badge{left:14px !important;width:84px !important;min-width:84px !important;max-width:84px !important;}
  body.single-cs_store .csz-offer-top-mobile > .csz-cta-wrap,
  body.single-cs_store .csz-offer-card .csz-cta-wrap{right:12px !important;}
  body.single-cs_store .csz-offer-card .csz-cta{width:124px !important;min-width:124px !important;max-width:124px !important;height:44px !important;font-size:13px !important;}
  body.single-cs_store .csz-offer-card .csz-offer-main h2{font-size:18px !important;}
  body.single-cs_store .csz-offer-card .csz-meta span{font-size:10.5px !important;padding:5px 7px !important;}
}
.ast-desktop .ast-primary-header-bar.main-header-bar, .ast-header-break-point #masthead .ast-primary-header-bar.main-header-bar {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: -10px;
}

/* =========================================================
   Typography match fix – aligned closer to the approved UI preview.
   Only font family, size, weight, line-height and letter-spacing touched.
   No structural/layout logic changed.
   ========================================================= */
body.single-cs_store .csz-page,
body.single-cs_store .csz-page * {
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

body.single-cs_store .csz-breadcrumb,
body.single-cs_store .csz-breadcrumb a,
body.single-cs_store .csz-breadcrumb span {
  font-size: 15px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.012em !important;
}

body.single-cs_store .csz-hero-title-desktop,
body.single-cs_store .csz-hero-mobile-copy h1 {
  font-size: clamp(36px, 2.75vw, 56px) !important;
  line-height: 1.03 !important;
  font-weight: 700 !important;
  letter-spacing: -0.00045em !important;
  color: #071226 !important;
}

body.single-cs_store .csz-short-desc,
body.single-cs_store .csz-hero-short-desc {
  font-size: 16px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  letter-spacing: -0.00012em !important;
  color: #1c2740 !important;
}

body.single-cs_store .csz-stars {
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}
body.single-cs_store .csz-stars strong {
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}
body.single-cs_store .csz-rated {
  font-size: 13px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
  letter-spacing: -0.008em !important;
}

body.single-cs_store .csz-store-stat span {
  font-size: 15.5px !important;
  line-height: 1.25 !important;
  font-weight: 650 !important;
  letter-spacing: -0.016em !important;
}
body.single-cs_store .csz-store-stat strong {
  font-size: 16px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

body.single-cs_store .csz-menu-card > h3,
body.single-cs_store .csz-menu-card h3,
body.single-cs_store .csz-related-heading {
  font-size: 20px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.032em !important;
  color: #071226 !important;
}
body.single-cs_store .csz-menu-card > a:not(.csz-view-all-stores) {
  font-size: 15px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

body.single-cs_store .csz-filterbar button,
body.single-cs_store .csz-filterbar .csz-filter-btn,
body.single-cs_store .csz-filterbar [data-filter] {
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

body.single-cs_store .csz-offer-badge small {
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
}
body.single-cs_store .csz-offer-badge strong {
  font-size: 41px !important;
  line-height: 0.88 !important;
  font-weight: 800 !important;
  letter-spacing: -0.05em !important;
}
body.single-cs_store .csz-offer-badge em,
body.single-cs_store .csz-custom-badge-text,
body.single-cs_store .csz-special {
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
}

body.single-cs_store .csz-offer-card .csz-tag.csz-exclusive {
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}
body.single-cs_store .csz-offer-main h2 {
  font-size: clamp(20px, 1.35vw, 23px) !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.036em !important;
  color: #071226 !important;
}
body.single-cs_store .csz-meta span {
  font-size: 11.5px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

body.single-cs_store .csz-cta,
body.single-cs_store .csz-cta .csz-cta-text {
  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
}
body.single-cs_store .csz-cta-code-peek {
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
}

body.single-cs_store .csz-modal .csz-modal-header-band,
body.single-cs_store .csz-modal-overlay .csz-modal-header-band {
  font-size: 21px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}
body.single-cs_store .csz-ticket-copy {
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

@media (max-width: 1100px) and (min-width: 761px) {
  body.single-cs_store .csz-hero-title-desktop,
  body.single-cs_store .csz-hero-mobile-copy h1 {
    font-size: clamp(34px, 3.8vw, 48px) !important;
  }
  body.single-cs_store .csz-offer-main h2 {
    font-size: 20px !important;
  }
  body.single-cs_store .csz-cta,
  body.single-cs_store .csz-cta .csz-cta-text {
    font-size: 15px !important;
  }
}

@media (max-width: 760px) {
  body.single-cs_store .csz-breadcrumb,
  body.single-cs_store .csz-breadcrumb a,
  body.single-cs_store .csz-breadcrumb span {
    font-size: 13px !important;
  }
  body.single-cs_store .csz-hero-title-desktop,
  body.single-cs_store .csz-hero-mobile-copy h1,
  body.single-cs_store .csz-hero-title-mobile {
    font-size: clamp(24px, 7vw, 30px) !important;
    line-height: 1.07 !important;
  }
  body.single-cs_store .csz-short-desc,
  body.single-cs_store .csz-hero-short-desc {
    font-size: 13px !important;
    line-height: 1.52 !important;
  }
  body.single-cs_store .csz-menu-card > h3,
  body.single-cs_store .csz-menu-card h3,
  body.single-cs_store .csz-related-heading {
    font-size: 19px !important;
  }
  body.single-cs_store .csz-store-stat span {
    font-size: 14px !important;
  }
  body.single-cs_store .csz-store-stat strong {
    font-size: 14.5px !important;
  }
  body.single-cs_store .csz-offer-badge small {
    font-size: 10px !important;
  }
  body.single-cs_store .csz-offer-badge strong {
    font-size: 33px !important;
  }
  body.single-cs_store .csz-offer-badge em,
  body.single-cs_store .csz-custom-badge-text,
  body.single-cs_store .csz-special {
    font-size: 13px !important;
  }
  body.single-cs_store .csz-offer-main h2 {
    font-size: 19px !important;
    line-height: 1.14 !important;
  }
  body.single-cs_store .csz-meta span {
    font-size: 10.5px !important;
  }
  body.single-cs_store .csz-cta,
  body.single-cs_store .csz-cta .csz-cta-text {
    font-size: 14px !important;
  }
  
  body.single-cs_store .csz-modal .csz-modal-header-band, body.single-cs_store .csz-modal-overlay .csz-modal-header-band {
    font-size: 16px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
}
  
      .csz-modal-body {
        padding: 0 0px 0px;
    }
      body.single-cs_store .csz-short-desc, body.single-cs_store .csz-hero-short-desc {
        font-size: 11px !important;
        line-height: 1.52 !important;
    }
}

/* =========================================================
   v3.4.0 — Store section anchors, sticky navigation, request
   form, transparent verification activity, and adaptive guide
   ========================================================= */

body.single-cs_store .csz-anchor-marker {
  display: block !important;
  position: relative !important;
  width: 1px !important;
  height: 0 !important;
  overflow: hidden !important;
  scroll-margin-top: 28px !important;
}

body.single-cs_store [data-csz-section],
body.single-cs_store .csz-proof-main,
body.single-cs_store .csz-about-card {
  scroll-margin-top: 28px !important;
}

@media (min-width: 761px) {
  body.single-cs_store .csz-left {
    position: sticky !important;
    top: 16px !important;
    align-self: start !important;
    margin-top: -220px !important;
    max-height: calc(100vh - 32px) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    padding: 2px 6px 18px 0 !important;
    scrollbar-width: thin !important;
    scrollbar-color: #b9ddd0 transparent !important;
  }
  body.single-cs_store .csz-left::-webkit-scrollbar { width: 6px !important; }
  body.single-cs_store .csz-left::-webkit-scrollbar-thumb {
    background: #b9ddd0 !important;
    border-radius: 999px !important;
  }
  body.single-cs_store .csz-left .csz-store-card {
    top: 0 !important;
    margin-top: 0 !important;
  }
  body.single-cs_store .csz-left .csz-menu-card {
    margin-top: 0 !important;
  }
}

body.single-cs_store .csz-menu-card > a:not(.csz-view-all-stores),
body.single-cs_store .csz-mobile-quicknav a {
  text-decoration: none !important;
}

body.single-cs_store .csz-menu-card > a.is-active:not(.csz-view-all-stores) {
  background: linear-gradient(135deg, #1cb47d, #39cc96) !important;
  color: #fff !important;
  border-color: transparent !important;
}

body.single-cs_store .csz-menu-card > a.is-active:not(.csz-view-all-stores)::before {
  background: rgba(255,255,255,.92) !important;
}

body.single-cs_store .csz-mobile-quicknav {
  display: none;
}

body.single-cs_store .csz-section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 12px;
  border: 1px solid #d6ebe2;
  border-radius: 999px;
  background: #f1fbf6;
  color: #087a59;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* Verification activity — uses actual store records, not fabricated shoppers. */
body.single-cs_store .csz-verification {
  margin-top: 28px !important;
  padding: 28px !important;
  border: 1px solid #dce6e2 !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: 0 16px 38px rgba(16, 40, 32, .08) !important;
}

body.single-cs_store .csz-verification-heading {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 22px !important;
  margin-bottom: 22px !important;
}

body.single-cs_store .csz-verification-heading h2 {
  margin: 0 0 8px !important;
  color: #071226 !important;
  font-size: clamp(24px, 2vw, 32px) !important;
  line-height: 1.12 !important;
  font-weight: 800 !important;
  letter-spacing: -.035em !important;
}

body.single-cs_store .csz-verification-heading p {
  margin: 0 !important;
  max-width: 720px !important;
  color: #526174 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

body.single-cs_store .csz-verification-updated {
  flex: 0 0 auto !important;
  padding: 9px 12px !important;
  border-radius: 999px !important;
  background: #eef9f4 !important;
  color: #087a59 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

body.single-cs_store .csz-verification-summary {
  display: grid !important;
  grid-template-columns: 82px minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: center !important;
  padding: 20px !important;
  margin-bottom: 18px !important;
  border: 1px solid #e2e9e6 !important;
  border-radius: 16px !important;
  background: #fbfdfc !important;
}

body.single-cs_store .csz-verification-logo {
  width: 76px !important;
  height: 76px !important;
  border-radius: 50% !important;
  border: 1px solid #dce7e2 !important;
  background: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

body.single-cs_store .csz-verification-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

body.single-cs_store .csz-verification-logo-fallback {
  color: #087a59 !important;
  font-size: 30px !important;
  font-weight: 900 !important;
}

body.single-cs_store .csz-verification-rate > div:first-child {
  display: flex !important;
  align-items: baseline !important;
  gap: 10px !important;
}

body.single-cs_store .csz-verification-rate strong {
  color: #071226 !important;
  font-size: 28px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

body.single-cs_store .csz-verification-rate span,
body.single-cs_store .csz-verification-rate small {
  color: #536174 !important;
  font-size: 13px !important;
  font-weight: 650 !important;
}

body.single-cs_store .csz-verification-bar {
  width: 100% !important;
  height: 8px !important;
  margin: 10px 0 8px !important;
  border-radius: 999px !important;
  background: #e6ece9 !important;
  overflow: hidden !important;
}

body.single-cs_store .csz-verification-bar i {
  display: block !important;
  height: 100% !important;
  border-radius: inherit !important;
  background: linear-gradient(90deg, #1cb47d, #8bdc4a) !important;
}

body.single-cs_store .csz-verification-list {
  border-top: 1px solid #e8eeeb !important;
}

body.single-cs_store .csz-verification-row {
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) !important;
  gap: 13px !important;
  align-items: center !important;
  min-height: 76px !important;
  padding: 14px 2px !important;
  border-bottom: 1px solid #e8eeeb !important;
}

body.single-cs_store .csz-verification-check {
  width: 34px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #e7f8ef !important;
  color: #087a59 !important;
  font-weight: 900 !important;
}

body.single-cs_store .csz-verification-row strong {
  display: block !important;
  margin-bottom: 5px !important;
  color: #101a2d !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
}

body.single-cs_store .csz-verification-row small {
  display: block !important;
  color: #69778a !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

body.single-cs_store .csz-verification-more {
  margin-top: 18px !important;
  padding: 10px 16px !important;
  border: 1px solid #b8d9cc !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #087a59 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
}

/* Discount request form */
body.single-cs_store .csz-discount-request {
  margin-top: 28px !important;
  padding: 30px !important;
  border: 1px solid #dce5e1 !important;
  border-radius: 20px !important;
  background: #f8f8f7 !important;
  box-shadow: 0 16px 38px rgba(16, 40, 32, .07) !important;
}

body.single-cs_store .csz-discount-request-head h2 {
  margin: 0 0 10px !important;
  color: #071226 !important;
  font-size: clamp(25px, 2.2vw, 34px) !important;
  line-height: 1.12 !important;
  font-weight: 800 !important;
  letter-spacing: -.04em !important;
}

body.single-cs_store .csz-discount-request-head > p {
  margin: 0 0 24px !important;
  color: #536174 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

body.single-cs_store .csz-discount-request-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .9fr) !important;
  gap: 18px !important;
  align-items: start !important;
}

body.single-cs_store .csz-discount-request-form,
body.single-cs_store .csz-request-how {
  border: 1px solid #e1e6e3 !important;
  border-radius: 18px !important;
  background: #fff !important;
}

body.single-cs_store .csz-discount-request-form {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  padding: 26px !important;
}

body.single-cs_store .csz-discount-request-form label {
  display: block !important;
  min-width: 0 !important;
}

body.single-cs_store .csz-discount-request-form .csz-request-full {
  grid-column: 1 / -1 !important;
}

body.single-cs_store .csz-discount-request-form label > span {
  display: block !important;
  margin-bottom: 8px !important;
  color: #0b1426 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

body.single-cs_store .csz-discount-request-form label > span b {
  color: #d33b3b !important;
}

body.single-cs_store .csz-discount-request-form label > span em {
  color: #8590a0 !important;
  font-style: normal !important;
  font-weight: 650 !important;
}

body.single-cs_store .csz-discount-request-form input,
body.single-cs_store .csz-discount-request-form select {
  width: 100% !important;
  height: 52px !important;
  padding: 0 16px !important;
  border: 1px solid #cfd8d4 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #152035 !important;
  font: inherit !important;
  font-size: 14px !important;
  outline: none !important;
  box-shadow: none !important;
}

body.single-cs_store .csz-discount-request-form input:focus,
body.single-cs_store .csz-discount-request-form select:focus {
  border-color: #1cb47d !important;
  box-shadow: 0 0 0 3px rgba(28,180,125,.12) !important;
}

body.single-cs_store .csz-discount-request-form label small {
  display: block !important;
  margin-top: 7px !important;
  color: #7a8798 !important;
  font-size: 11.5px !important;
  line-height: 1.45 !important;
}

body.single-cs_store .csz-request-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

body.single-cs_store .csz-request-actions {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding-top: 4px !important;
}

body.single-cs_store .csz-request-submit,
body.single-cs_store .csz-request-cancel {
  min-height: 50px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  cursor: pointer !important;
}

body.single-cs_store .csz-request-submit {
  min-width: 245px !important;
  border: 0 !important;
  background: linear-gradient(135deg, #94e34b, #b8ee55) !important;
  color: #10200d !important;
}

body.single-cs_store .csz-request-submit i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 25px !important;
  height: 25px !important;
  margin-left: 10px !important;
  border-radius: 50% !important;
  background: #1e2d20 !important;
  color: #fff !important;
  font-style: normal !important;
}

body.single-cs_store .csz-request-submit:disabled {
  opacity: .6 !important;
  cursor: wait !important;
}

body.single-cs_store .csz-request-cancel {
  min-width: 130px !important;
  border: 1px solid #d2d9d5 !important;
  background: #fff !important;
  color: #10192a !important;
}

body.single-cs_store .csz-request-status {
  min-height: 20px !important;
  font-size: 13px !important;
  font-weight: 750 !important;
}

body.single-cs_store .csz-request-status.is-success { color: #087a59 !important; }
body.single-cs_store .csz-request-status.is-error { color: #bd2d2d !important; }
body.single-cs_store .csz-request-status.is-loading { color: #576579 !important; }

body.single-cs_store .csz-request-how {
  padding: 28px !important;
}

body.single-cs_store .csz-request-how h3 {
  margin: 0 0 18px !important;
  color: #10192a !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
}

body.single-cs_store .csz-request-how ol {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  counter-reset: csz-request-step !important;
}

body.single-cs_store .csz-request-how li {
  position: relative !important;
  min-height: 34px !important;
  padding: 2px 0 10px 38px !important;
  color: #273247 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  counter-increment: csz-request-step !important;
}

body.single-cs_store .csz-request-how li::before {
  content: counter(csz-request-step) !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 24px !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  background: #e7f5dd !important;
  color: #345627 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

body.single-cs_store .csz-request-how > p {
  margin: 14px 0 0 !important;
  padding: 16px !important;
  border: 1px solid #86cf45 !important;
  border-radius: 12px !important;
  background: #f7fff0 !important;
  color: #344331 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

/* Adaptive how-to/about layout. */
body.single-cs_store .csz-proof.csz-proof--about-only,
body.single-cs_store .csz-proof.csz-proof--proof-only {
  display: block !important;
}

body.single-cs_store .csz-proof.csz-proof--about-only .csz-about-card,
body.single-cs_store .csz-proof.csz-proof--proof-only .csz-proof-main {
  width: 100% !important;
  max-width: none !important;
}

body.single-cs_store .csz-proof.csz-proof--about-only .csz-about-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 36%) !important;
  column-gap: 34px !important;
  align-items: center !important;
}

body.single-cs_store .csz-proof.csz-proof--about-only .csz-about-card h2,
body.single-cs_store .csz-proof.csz-proof--about-only .csz-about-copy {
  grid-column: 1 !important;
}

body.single-cs_store .csz-proof.csz-proof--about-only .csz-about-figure {
  grid-column: 2 !important;
  grid-row: 1 / span 3 !important;
  margin: 0 !important;
}

body.single-cs_store .csz-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

body.single-cs_store .csz-proof-image-wrap img {
  width: 100% !important;
  height: 210px !important;
  object-fit: contain !important;
  background: #fff !important;
}

@media (max-width: 980px) {
  body.single-cs_store .csz-discount-request-grid {
    grid-template-columns: 1fr !important;
  }
  body.single-cs_store .csz-proof.csz-proof--about-only .csz-about-card {
    display: block !important;
  }
  body.single-cs_store .csz-proof.csz-proof--about-only .csz-about-figure {
    margin-top: 20px !important;
  }
}

@media (max-width: 760px) {
  body.single-cs_store {
    padding-bottom: 74px !important;
  }

  body.single-cs_store [data-csz-section],
  body.single-cs_store .csz-anchor-marker,
  body.single-cs_store .csz-proof-main,
  body.single-cs_store .csz-about-card {
    scroll-margin-top: 82px !important;
  }

  body.single-cs_store .csz-mobile-quicknav {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 2147482000 !important;
    display: block !important;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom)) !important;
    border-top: 1px solid #dbe2df !important;
    background: rgba(255,255,255,.97) !important;
    box-shadow: 0 -8px 24px rgba(15,23,42,.12) !important;
    backdrop-filter: blur(12px) !important;
  }

  body.single-cs_store .csz-mobile-quicknav-track {
    display: flex !important;
    gap: 7px !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-inline: contain !important;
    scrollbar-width: none !important;
    scroll-snap-type: x proximity !important;
  }
  body.single-cs_store .csz-mobile-quicknav-track::-webkit-scrollbar { display: none !important; }

  body.single-cs_store .csz-mobile-quicknav a {
    flex: 0 0 auto !important;
    min-height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 16px !important;
    border: 1px solid #d7dfdc !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #172033 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    scroll-snap-align: start !important;
  }

  body.single-cs_store .csz-mobile-quicknav a.is-active {
    border-color: transparent !important;
    background: linear-gradient(135deg, #94e34b, #b8ee55) !important;
    color: #13200e !important;
  }

  body.single-cs_store .csz-verification,
  body.single-cs_store .csz-discount-request {
    margin: 24px 0 0 !important;
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }

  body.single-cs_store .csz-verification-heading {
    display: block !important;
  }

  body.single-cs_store .csz-verification-updated {
    display: inline-flex !important;
    margin-top: 12px !important;
  }

  body.single-cs_store .csz-verification-summary {
    grid-template-columns: 62px minmax(0, 1fr) !important;
    padding: 15px !important;
  }

  body.single-cs_store .csz-verification-logo {
    width: 58px !important;
    height: 58px !important;
  }

  body.single-cs_store .csz-discount-request-form {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    padding: 18px 14px !important;
  }

  body.single-cs_store .csz-discount-request-form .csz-request-full,
  body.single-cs_store .csz-discount-request-form label {
    grid-column: 1 !important;
  }

  body.single-cs_store .csz-request-actions {
    display: grid !important;
    grid-template-columns: 1fr 120px !important;
    gap: 10px !important;
  }

  body.single-cs_store .csz-request-submit,
  body.single-cs_store .csz-request-cancel {
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 12px !important;
  }

  body.single-cs_store .csz-request-how {
    padding: 20px 18px !important;
  }

  body.single-cs_store .csz-proof-grid {
    grid-template-columns: 1fr !important;
  }

  body.single-cs_store .csz-proof-image-wrap img {
    height: auto !important;
    min-height: 180px !important;
  }
}

body.single-cs_store .csz-section-observer {
  display: block !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
}

body.single-cs_store .csz-menu-card > a:not(.csz-view-all-stores):not(.is-active) {
  background: #f0eeee !important;
  color: #12243a !important;
  border: 1px solid transparent !important;
}

body.single-cs_store .csz-menu-card > a:not(.csz-view-all-stores):not(.is-active)::before {
  background: #e5fbf2 !important;
}

/* =========================================================
   v3.4.1 — sticky sidebar correction, no internal scrollbar,
   site-matched quick links, and community activity layout
   ========================================================= */

@media (min-width: 761px) {
  body.single-cs_store .csz-shell,
  body.single-cs_store .csz-page,
  body.single-cs_store .csz-premium-layout {
    overflow: visible !important;
  }

  body.single-cs_store .csz-left {
    position: relative !important;
    top: auto !important;
    align-self: stretch !important;
    margin-top: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    overscroll-behavior: auto !important;
    padding: 0 !important;
    scrollbar-width: auto !important;
  }

  body.single-cs_store .csz-left::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
  }

  body.single-cs_store .csz-left-sticky {
    position: sticky !important;
    top: 16px !important;
    z-index: 6 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
    margin-top: -150px !important;
    align-self: flex-start !important;
  }

  body.single-cs_store .csz-left-sticky .csz-store-card {
    position: relative !important;
    top: 0 !important;
    margin: 0 !important;
  }

  body.single-cs_store .csz-left-sticky .csz-menu-card {
    position: relative !important;
    top: auto !important;
    margin: 0 !important;
  }

  /* Related stores are intentionally outside the sticky group so the page
     does not need an ugly independent sidebar scrollbar. */
  body.single-cs_store .csz-left > .csz-latest-stores.csz-related-sidebar {
    display: block !important;
    width: 100% !important;
    margin: 24px 0 0 !important;
    padding: 24px 22px !important;
    border: 1px solid rgba(217,226,229,.95) !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: var(--csz-shadow-soft) !important;
    overflow: visible !important;
  }
}

/* Keep all desktop Quick Menu entries identical to the site's existing style. */
body.single-cs_store .csz-menu-card > a:not(.csz-view-all-stores) {
  min-height: 40px !important;
  margin: 0 0 8px !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #e9e7e7 !important;
  color: #111827 !important;
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

body.single-cs_store .csz-menu-card > a.is-active:not(.csz-view-all-stores) {
  background: #31c894 !important;
  color: #071225 !important;
  border-color: transparent !important;
}

body.single-cs_store .csz-menu-card > a:not(.csz-view-all-stores)::before,
body.single-cs_store .csz-menu-card > a:not(.csz-view-all-stores)::after {
  display: none !important;
  content: none !important;
}

/* Community verification section — visual language matched to Coupon Hub. */
body.single-cs_store .csz-verification {
  margin-top: 28px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.single-cs_store .csz-verification-titlebar {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin-bottom: 16px !important;
}

body.single-cs_store .csz-verification-titlebar h2 {
  margin: 0 0 8px !important;
  color: #071225 !important;
  font-size: clamp(24px, 2vw, 31px) !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
  letter-spacing: -.035em !important;
}

body.single-cs_store .csz-verification-titlebar p {
  margin: 0 !important;
  color: #536174 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

body.single-cs_store .csz-verification-updated {
  margin-top: 4px !important;
  padding: 9px 13px !important;
  border: 1px solid #cfe8dd !important;
  border-radius: 999px !important;
  background: #effaf5 !important;
  color: #087a59 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

body.single-cs_store .csz-verification-ticket {
  padding: 26px 28px !important;
  border: 1px solid #dce5e1 !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 10px 28px rgba(15,23,42,.07) !important;
}

body.single-cs_store .csz-verification-topline {
  display: grid !important;
  grid-template-columns: 72px minmax(0,1fr) auto !important;
  gap: 18px !important;
  align-items: center !important;
}

body.single-cs_store .csz-verification-logo {
  width: 68px !important;
  height: 68px !important;
  border-radius: 50% !important;
  border: 1px solid #dce7e2 !important;
  background: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

body.single-cs_store .csz-verification-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

body.single-cs_store .csz-verification-rate > div:first-child {
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: wrap !important;
  gap: 9px !important;
}

body.single-cs_store .csz-verification-rate strong {
  color: #071225 !important;
  font-size: 27px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

body.single-cs_store .csz-verification-rate span,
body.single-cs_store .csz-verification-rate small {
  color: #536174 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

body.single-cs_store .csz-verification-bar {
  width: min(390px, 100%) !important;
  height: 7px !important;
  margin: 9px 0 7px !important;
  border-radius: 999px !important;
  background: #e7ece9 !important;
  overflow: hidden !important;
}

body.single-cs_store .csz-verification-bar i {
  display: block !important;
  height: 100% !important;
  border-radius: inherit !important;
  background: #31c894 !important;
}

body.single-cs_store .csz-verification-try {
  min-width: 176px !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  background: #31c894 !important;
  color: #071225 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

body.single-cs_store .csz-verification-try span {
  width: 24px !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #071225 !important;
  color: #fff !important;
}

body.single-cs_store .csz-verification-worked {
  margin: 20px 0 0 90px !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  background: #f0f1f1 !important;
  color: #4e5c6d !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
  text-align: center !important;
}

body.single-cs_store .csz-verification-activity {
  margin: 22px 0 0 90px !important;
  padding-top: 20px !important;
  border-top: 1px solid #e6ece9 !important;
}

body.single-cs_store .csz-verification-activity h3 {
  margin: 0 0 14px !important;
  color: #071225 !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

body.single-cs_store .csz-verification-person {
  display: grid !important;
  grid-template-columns: 42px minmax(0,1fr) !important;
  gap: 13px !important;
  align-items: center !important;
  min-height: 74px !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #edf1ef !important;
}

body.single-cs_store .csz-person-avatar {
  width: 42px !important;
  height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  border: 3px solid #fff !important;
  background: linear-gradient(135deg, #d8f8e7, #9ce5c8) !important;
  box-shadow: 0 0 0 1px #cfe4db !important;
  color: #075f47 !important;
}

body.single-cs_store .csz-person-avatar b {
  font-size: 12px !important;
  font-weight: 900 !important;
}

body.single-cs_store .csz-verification-person strong {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 4px !important;
  color: #10192a !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  font-weight: 850 !important;
}

body.single-cs_store .csz-verification-person strong em {
  padding: 3px 7px !important;
  border-radius: 999px !important;
  background: #eff7f3 !important;
  color: #527064 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-style: normal !important;
  font-weight: 800 !important;
}

body.single-cs_store .csz-verification-person p {
  margin: 0 !important;
  color: #647184 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

body.single-cs_store .csz-verification-disclosure {
  margin: 14px 0 0 !important;
  color: #7a8795 !important;
  font-size: 10.5px !important;
  line-height: 1.5 !important;
}

/* Request form buttons now use the site's normal green, not competitor lime. */
body.single-cs_store .csz-request-submit {
  background: #31c894 !important;
  color: #071225 !important;
}

body.single-cs_store .csz-section-kicker {
  border-color: #cfe8dd !important;
  background: #effaf5 !important;
  color: #087a59 !important;
}

@media (max-width: 760px) {
  body.single-cs_store .csz-left-sticky {
    position: static !important;
    margin-top: 0 !important;
  }

  body.single-cs_store .csz-mobile-quicknav a.is-active {
    background: #31c894 !important;
    color: #071225 !important;
  }

  body.single-cs_store .csz-verification-titlebar {
    display: block !important;
  }

  body.single-cs_store .csz-verification-updated {
    display: inline-flex !important;
    margin-top: 10px !important;
  }

  body.single-cs_store .csz-verification-ticket {
    padding: 18px 15px !important;
  }

  body.single-cs_store .csz-verification-topline {
    grid-template-columns: 56px minmax(0,1fr) !important;
    gap: 12px !important;
  }

  body.single-cs_store .csz-verification-logo {
    width: 54px !important;
    height: 54px !important;
  }

  body.single-cs_store .csz-verification-try {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin-top: 4px !important;
  }

  body.single-cs_store .csz-verification-worked,
  body.single-cs_store .csz-verification-activity {
    margin-left: 0 !important;
  }
}
body.single-cs_store .csz-person-avatar svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

/* =========================================================
   v3.4.4 — Staged sticky sidebar with bottom-docked Related Stores
   Store Summary + Quick Menu stay pinned at one fixed position. Related
   Stores remains at the bottom of the full coupon column. Near the end, the
   pinned group releases immediately above Related Stores and scrolls away.
   ========================================================= */

@media (min-width: 761px) {
  body.single-cs_store .csz-shell {
    align-items: stretch !important;
    overflow: visible !important;
  }

  body.single-cs_store .csz-left {
    position: relative !important;
    top: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-self: stretch !important;
    min-height: 100% !important;
    margin-top: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    overflow: visible !important;
    contain: none !important;
    transform: none !important;
  }

  body.single-cs_store .csz-left-sticky {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
    margin-top: -150px !important;
    overflow: visible !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-managed {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    z-index: 30 !important;
    transform: none !important;
  }

  body.single-cs_store .csz-sidebar-placeholder {
    display: none !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    pointer-events: none !important;
  }

  body.single-cs_store .csz-sidebar-placeholder.is-active {
    display: block !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-fixed {
    position: fixed !important;
    top: var(--csz-sidebar-fixed-top, 12px) !important;
    left: var(--csz-sidebar-fixed-left, 0px) !important;
    width: var(--csz-sidebar-fixed-width, 300px) !important;
    margin: 0 !important;
    z-index: 9000 !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-bottom {
    position: absolute !important;
    top: var(--csz-sidebar-bottom-top, 0px) !important;
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    z-index: 30 !important;
  }

  /* The Related Stores card is a normal sibling and is pushed to the end of
     the full left column. It does not move into view prematurely. */
  body.single-cs_store .csz-left > .csz-latest-stores.csz-related-sidebar {
    display: block !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    margin: auto 0 0 !important;
    padding: 24px 22px !important;
    border: 1px solid rgba(217,226,229,.95) !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: var(--csz-shadow-soft) !important;
    overflow: visible !important;
  }

  /* Compact only the store summary while pinned. The Quick Menu keeps the
     site's normal button height, font size, spacing, and visual weight. */
  body.single-cs_store .csz-left-sticky.csz-sidebar-active {
    gap: 10px !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-store-card {
    min-height: 252px !important;
    padding: 88px 23px 14px !important;
    border-radius: 17px !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-store-card > .csz-logo-orb {
    top: 8px !important;
    width: 78px !important;
    height: 78px !important;
    box-shadow: 0 10px 24px rgba(7,18,41,.12) !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-stars {
    gap: 7px !important;
    margin: 0 0 1px !important;
    font-size: 16px !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-stars strong {
    margin-left: 2px !important;
    font-size: 17px !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-rated {
    margin-bottom: 7px !important;
    font-size: 10.5px !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-store-stat {
    min-height: 34px !important;
    padding: 6px 0 !important;
    font-size: 12.5px !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-store-stat .csz-stat-icon {
    width: 23px !important;
    height: 23px !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-menu-card {
    padding: 16px 16px 12px !important;
    border-radius: 17px !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-menu-card h3 {
    margin: 0 0 10px !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-menu-card > a:not(.csz-view-all-stores) {
    min-height: 40px !important;
    margin: 0 0 6px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-menu-card > a:last-child {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 760px) {
  body.single-cs_store .csz-sidebar-placeholder {
    display: none !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-managed,
  body.single-cs_store .csz-left-sticky.csz-sidebar-fixed,
  body.single-cs_store .csz-left-sticky.csz-sidebar-bottom {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    margin-top: 0 !important;
  }

  body.single-cs_store .csz-left > .csz-latest-stores.csz-related-sidebar {
    display: none !important;
  }
}

/* =========================================================
   v3.4.5 — Related Stores at the Request Discount stage
   The card is no longer forced to the absolute bottom of the full content
   column. JavaScript places it directly beneath the released Quick Menu when
   the Request Discount section reaches the intended viewport position.
   ========================================================= */
@media (min-width: 761px) {
  body.single-cs_store .csz-left > .csz-latest-stores.csz-related-sidebar.csz-related-staged {
    position: absolute !important;
    top: var(--csz-related-stage-top, 0px) !important;
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    z-index: 20 !important;
  }
}

@media (max-width: 760px) {
  body.single-cs_store .csz-left > .csz-latest-stores.csz-related-sidebar.csz-related-staged {
    position: static !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
  }
}


/* =========================================================
   v3.4.6 — Related Stores attaches below Quick Menu
   From Community Verified through the lower sections, Related Stores remains
   directly under the pinned Quick Menu. The full stack releases only near the
   actual bottom of the content column.
   ========================================================= */
@media (min-width: 761px) {
  body.single-cs_store .csz-left > .csz-latest-stores.csz-related-sidebar.csz-related-attached-fixed {
    position: fixed !important;
    top: var(--csz-related-fixed-top, 0px) !important;
    right: auto !important;
    bottom: auto !important;
    left: var(--csz-related-fixed-left, 0px) !important;
    width: var(--csz-related-fixed-width, 300px) !important;
    margin: 0 !important;
    z-index: 8999 !important;
  }

  body.single-cs_store .csz-left > .csz-latest-stores.csz-related-sidebar.csz-related-attached-bottom {
    position: absolute !important;
    top: var(--csz-related-bottom-top, 0px) !important;
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    z-index: 20 !important;
  }
}

@media (max-width: 760px) {
  body.single-cs_store .csz-left > .csz-latest-stores.csz-related-sidebar.csz-related-attached-fixed,
  body.single-cs_store .csz-left > .csz-latest-stores.csz-related-sidebar.csz-related-attached-bottom {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    margin: 0 !important;
  }
}

/* =========================================================
   v3.4.7 — Related Stores immediately below Quick Menu
   No section-based reveal. The card is always the third member of the managed
   desktop stack, so it immediately occupies any free space below Quick Menu.
   ========================================================= */
@media (min-width: 761px) {
  body.single-cs_store .csz-left-sticky > .csz-latest-stores.csz-related-sidebar {
    display: block !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 24px 22px !important;
    border: 1px solid rgba(217,226,229,.95) !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: var(--csz-shadow-soft) !important;
    overflow: visible !important;
    z-index: auto !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-fixed,
  body.single-cs_store .csz-left-sticky.csz-sidebar-bottom {
    gap: 14px !important;
  }

  body.single-cs_store .csz-left-sticky > .csz-latest-stores.csz-related-sidebar.csz-related-staged,
  body.single-cs_store .csz-left-sticky > .csz-latest-stores.csz-related-sidebar.csz-related-attached,
  body.single-cs_store .csz-left-sticky > .csz-latest-stores.csz-related-sidebar.csz-related-attached-fixed,
  body.single-cs_store .csz-left-sticky > .csz-latest-stores.csz-related-sidebar.csz-related-attached-bottom {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin: 0 !important;
  }
}

@media (max-width: 760px) {
  body.single-cs_store .csz-left-sticky > .csz-latest-stores.csz-related-sidebar {
    display: none !important;
  }
}

/* =========================================================
   v3.4.8 — Quick Menu SVG icons + true screenshot sizing
   ========================================================= */
body.single-cs_store .csz-menu-card > a:not(.csz-view-all-stores) {
  display: flex !important;
  align-items: center !important;
  gap: 11px !important;
  padding-left: 12px !important;
  padding-right: 15px !important;
}
body.single-cs_store .csz-menu-card .csz-quick-link-icon {
  width: 25px !important;
  height: 25px !important;
  min-width: 25px !important;
  border-radius: 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #e8faf3 !important;
  color: #128b67 !important;
  box-shadow: inset 0 0 0 1px rgba(18,139,103,.14) !important;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease !important;
}
body.single-cs_store .csz-menu-card .csz-quick-link-icon svg {
  width: 15px !important;
  height: 15px !important;
  display: block !important;
}
body.single-cs_store .csz-menu-card .csz-quick-link-label {
  min-width: 0 !important;
  flex: 1 1 auto !important;
}
body.single-cs_store .csz-menu-card > a.is-active:not(.csz-view-all-stores) .csz-quick-link-icon {
  background: rgba(255,255,255,.94) !important;
  color: #0b8e67 !important;
  box-shadow: none !important;
}

/* The supplied screenshot URL is the visual itself — no fixed-height blank
   placeholder around it, no contain-letterboxing, and no synthetic background. */
body.single-cs_store .csz-proof-image-wrap {
  padding: 0 !important;
  background: transparent !important;
  line-height: 0 !important;
}
body.single-cs_store .csz-proof-image-wrap img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: initial !important;
  object-position: initial !important;
  background: transparent !important;
  border-radius: 11px !important;
}

/* =========================================================
   v3.4.9 — approved desktop icon treatment (Image 1 match)
   ========================================================= */
@media (min-width: 761px) {
  /* v3.4.10: keep the approved icons, but remove the grouped grey stats box.
     The three rows should sit directly on the white store card like the older design. */
  body.single-cs_store .csz-store-card .csz-store-stats {
    width: 100% !important;
    margin: 20px 0 2px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  /* Match the airy pre-panel layout: no separators, no row boxes, and
     comfortable vertical rhythm while preserving the approved v3.4.9 icons. */
  body.single-cs_store .csz-store-card .csz-store-stats .csz-store-stat {
    min-height: 44px !important;
    margin: 0 !important;
    padding: 7px 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  body.single-cs_store .csz-store-card .csz-store-stats .csz-store-stat + .csz-store-stat {
    margin-top: 1px !important;
  }

  body.single-cs_store .csz-store-card .csz-store-stats .csz-store-stat span {
    gap: 9px !important;
  }

  body.single-cs_store .csz-store-card .csz-store-stats .csz-stat-icon {
    width: 27px !important;
    height: 27px !important;
    min-width: 27px !important;
    border-radius: 50% !important;
    background: #ecfaf5 !important;
    color: #15986f !important;
    box-shadow: inset 0 0 0 1px rgba(21, 152, 111, .14) !important;
  }

  body.single-cs_store .csz-store-card .csz-store-stats .csz-stat-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  /* Compact sticky mode: same icons, still no grouped grey panel. */
  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-store-card .csz-store-stats {
    margin-top: 10px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-store-card .csz-store-stats .csz-store-stat {
    min-height: 37px !important;
    padding: 5px 0 !important;
    border: 0 !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-store-card .csz-store-stats .csz-stat-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
  }

  body.single-cs_store .csz-left-sticky.csz-sidebar-active .csz-store-card .csz-store-stats .csz-stat-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  /* Normal Quick Menu icons in Image 1 are bare dark-outline SVGs — not
     mint rounded-square chips. Only the active row gets a white circle. */
  body.single-cs_store .csz-menu-card .csz-quick-link-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #536176 !important;
    box-shadow: none !important;
  }

  body.single-cs_store .csz-menu-card .csz-quick-link-icon svg {
    width: 17px !important;
    height: 17px !important;
    stroke-width: 1.8 !important;
  }

  body.single-cs_store .csz-menu-card > a.is-active:not(.csz-view-all-stores) .csz-quick-link-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #189a72 !important;
    box-shadow: none !important;
  }

  body.single-cs_store .csz-menu-card > a.is-active:not(.csz-view-all-stores) .csz-quick-link-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  /* How-to icon chips are circular, subtle, and use the approved Lucide-like
     copy / external-link / search / gift SVGs. */
  body.single-cs_store .csz-proof-step-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 50% !important;
    background: #eefaf6 !important;
    color: #15996f !important;
    box-shadow: inset 0 0 0 1px rgba(21, 153, 111, .14) !important;
  }

  body.single-cs_store .csz-proof-step-icon svg {
    width: 17px !important;
    height: 17px !important;
    stroke-width: 1.8 !important;
  }
}


/* v3.4.12: after the coupon popup is closed, show the real coupon codes
   directly in the CTA buttons and permanently disable the peel treatment. */
body.single-cs_store .csz-offer-card .csz-cta.csz-cta-code.csz-cta-revealed,
body.single-cs_store .csz-offer-card .csz-cta.csz-cta-code.csz-cta-revealed:hover,
body.single-cs_store .csz-offer-card .csz-cta.csz-cta-code.csz-cta-revealed:focus {
  background:#2b2c30 !important;
  color:#fff !important;
  cursor:copy !important;
  overflow:hidden !important;
}
body.single-cs_store .csz-offer-card .csz-cta.csz-cta-code.csz-cta-revealed::before,
body.single-cs_store .csz-offer-card .csz-cta.csz-cta-code.csz-cta-revealed::after {
  content:none !important;
  display:none !important;
  clip-path:none !important;
  width:0 !important;
  height:0 !important;
  box-shadow:none !important;
  transition:none !important;
}
body.single-cs_store .csz-offer-card .csz-cta.csz-cta-revealed .csz-cta-code-peek {
  display:none !important;
  opacity:0 !important;
  visibility:hidden !important;
}
body.single-cs_store .csz-offer-card .csz-cta.csz-cta-revealed .csz-cta-text {
  position:relative !important;
  z-index:4 !important;
  transform:none !important;
  transition:none !important;
  width:100% !important;
  justify-content:center !important;
  text-align:center !important;
  white-space:nowrap !important;
}

/* v3.4.13: compact clipboard confirmation shown above a revealed coupon code.
   It is fixed to the viewport so the offer card's overflow:hidden cannot clip it. */
body.single-cs_store .csz-copy-toast {
  position:fixed !important;
  z-index:2147483000 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:32px !important;
  padding:7px 13px !important;
  border-radius:9px !important;
  background:#111827 !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.12) !important;
  box-shadow:0 8px 22px rgba(15,23,42,.20) !important;
  font-family:'Plus Jakarta Sans',sans-serif !important;
  font-size:12px !important;
  line-height:1 !important;
  font-weight:800 !important;
  letter-spacing:.01em !important;
  white-space:nowrap !important;
  pointer-events:none !important;
  opacity:0 !important;
  visibility:hidden !important;
  transform:translateY(5px) scale(.97) !important;
  transition:opacity .16s ease,transform .16s ease,visibility .16s ease !important;
}
body.single-cs_store .csz-copy-toast::after {
  content:"" !important;
  position:absolute !important;
  left:50% !important;
  bottom:-5px !important;
  width:10px !important;
  height:10px !important;
  background:#111827 !important;
  transform:translateX(-50%) rotate(45deg) !important;
  border-right:1px solid rgba(255,255,255,.10) !important;
  border-bottom:1px solid rgba(255,255,255,.10) !important;
}
body.single-cs_store .csz-copy-toast.is-below::after {
  top:-5px !important;
  bottom:auto !important;
  border:0 !important;
  border-left:1px solid rgba(255,255,255,.10) !important;
  border-top:1px solid rgba(255,255,255,.10) !important;
}
body.single-cs_store .csz-copy-toast.is-visible {
  opacity:1 !important;
  visibility:visible !important;
  transform:translateY(0) scale(1) !important;
}
@media (max-width:600px) {
  body.single-cs_store .csz-copy-toast {
    min-height:30px !important;
    padding:7px 11px !important;
    border-radius:8px !important;
    font-size:11px !important;
  }
}


/* =========================================================
   v3.4.14 — Fresh-code fallback instructions after Copy Code
   ========================================================= */
body.single-cs_store .csz-fresh-instructions{
  width:min(520px,100%);
  margin:0 auto;
  text-align:center;
  color:#071226;
  padding:0 18px 26px;
  box-sizing:border-box;
}
body.single-cs_store .csz-fresh-success-icon{
  width:54px;
  height:54px;
  margin:0 auto 12px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#e9f9f2;
  color:#07965f;
  font-size:28px;
  font-weight:900;
}
body.single-cs_store .csz-fresh-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  background:#e9f9f2;
  color:#087a55;
  font-size:12px;
  font-weight:800;
  margin:0 0 10px;
}
body.single-cs_store .csz-fresh-instructions h2{
  margin:0 0 8px!important;
}
body.single-cs_store .csz-fresh-lead{
  margin:0 auto 16px;
  color:#536378;
  font-size:15px;
  line-height:1.45;
  font-weight:650;
}
body.single-cs_store .csz-fresh-fallback-card{
  padding:15px 16px;
  margin:0 auto 16px;
  border:1px solid #ccebdd;
  border-radius:14px;
  background:linear-gradient(180deg,#f5fcf8,#eefaf5);
  color:#173328;
  font-size:14px;
  line-height:1.45;
  font-weight:750;
}
body.single-cs_store .csz-fresh-steps{
  display:grid;
  gap:9px;
  margin:0 auto 18px;
  padding:0;
  list-style:none;
  text-align:left;
}
body.single-cs_store .csz-fresh-step{
  display:grid;
  grid-template-columns:28px 1fr;
  align-items:start;
  gap:10px;
  color:#172136;
  font-size:14px;
  line-height:1.35;
  font-weight:700;
}
body.single-cs_store .csz-fresh-step-number{
  width:25px;
  height:25px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#10ad75;
  color:#fff;
  font-size:12px;
  font-weight:900;
}
body.single-cs_store .csz-fresh-open-store{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:48px;
  padding:0 18px;
  border-radius:12px;
  background:linear-gradient(135deg,#16b77d,#10a970);
  color:#fff!important;
  text-decoration:none!important;
  font-size:15px;
  font-weight:850;
  box-shadow:0 10px 24px rgba(16,169,112,.22);
}
body.single-cs_store .csz-fresh-store-note{
  display:block;
  margin-top:9px;
  color:#6b7788;
  font-size:11.5px;
  line-height:1.4;
  font-weight:650;
}
@media(max-width:760px){
  body.single-cs_store .csz-fresh-instructions{padding:0 14px 22px}
  body.single-cs_store .csz-fresh-success-icon{width:46px;height:46px;font-size:24px;margin-bottom:10px}
  body.single-cs_store .csz-fresh-lead{font-size:13px;margin-bottom:13px}
  body.single-cs_store .csz-fresh-fallback-card{font-size:12.5px;padding:12px 13px;margin-bottom:13px}
  body.single-cs_store .csz-fresh-steps{gap:8px;margin-bottom:15px}
  body.single-cs_store .csz-fresh-step{grid-template-columns:24px 1fr;gap:8px;font-size:12.5px}
  body.single-cs_store .csz-fresh-step-number{width:22px;height:22px;font-size:11px}
  body.single-cs_store .csz-fresh-open-store{min-height:44px;font-size:14px}
}


/* =========================================================
   v3.4.15 — After-Copy fresh-code helper + single-offer reveal
   ========================================================= */
body.single-cs_store .csz-fresh-after-copy{
  width:min(560px,100%);
  margin:0 auto;
  padding:0 28px 26px;
  box-sizing:border-box;
  color:#071226;
  text-align:center;
}
body.single-cs_store .csz-fresh-after-copy .csz-fresh-success-icon{
  width:48px;
  height:48px;
  margin:0 auto 16px;
  border-radius:50%;
  background:#e9f9f2;
  color:#0aa26e;
  font-size:28px;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
}
body.single-cs_store .csz-fresh-after-copy > h2{
  margin:0 0 22px!important;
  font-size:36px!important;
  line-height:1.08!important;
  font-weight:850!important;
  color:#050505!important;
}
body.single-cs_store .csz-fresh-after-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(190px,.9fr);
  gap:28px;
  align-items:center;
  text-align:left;
  margin:0 0 22px;
}
body.single-cs_store .csz-fresh-after-steps{
  color:#111;
  font-size:13px;
  line-height:1.42;
  font-weight:600;
}
body.single-cs_store .csz-fresh-after-intro{
  margin:0 0 24px!important;
  font-weight:800!important;
  color:#111!important;
  font-size:13px!important;
  line-height:1.35!important;
}
body.single-cs_store .csz-fresh-after-steps p:not(.csz-fresh-after-intro){
  margin:0 0 22px!important;
  color:#111!important;
  font-size:13px!important;
  line-height:1.42!important;
}
body.single-cs_store .csz-fresh-after-steps p:last-child{margin-bottom:0!important}
body.single-cs_store .csz-fresh-after-steps strong{
  color:#39b88d!important;
  font-weight:800!important;
}
body.single-cs_store .csz-fresh-store-preview{
  position:relative;
  min-height:245px;
  padding:30px 16px 20px;
  border:3px solid #33b487;
  border-radius:22px;
  background:#fff;
  box-shadow:0 8px 22px rgba(15,23,42,.08);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
  overflow:hidden;
}
body.single-cs_store .csz-fresh-preview-close{
  position:absolute;
  top:7px;
  right:10px;
  font-size:30px;
  line-height:1;
  font-weight:300;
  color:#111;
}
body.single-cs_store .csz-fresh-confetti{
  font-size:50px;
  line-height:1;
  margin:0 0 12px;
}
body.single-cs_store .csz-fresh-store-preview h3{
  margin:0 0 12px!important;
  color:#050505!important;
  font-size:25px!important;
  line-height:1.02!important;
  font-weight:900!important;
  text-align:center!important;
}
body.single-cs_store .csz-fresh-store-preview p{
  margin:0 0 18px!important;
  color:#43c79e!important;
  font-size:12px!important;
  line-height:1.45!important;
  font-weight:700!important;
  text-align:center!important;
}
body.single-cs_store .csz-fresh-store-preview p strong,
body.single-cs_store .csz-fresh-store-preview p b{
  color:#43c79e!important;
  font-weight:800!important;
}
body.single-cs_store .csz-fresh-preview-shop{
  display:flex;
  width:100%;
  min-height:38px;
  align-items:center;
  justify-content:center;
  border-radius:2px;
  background:#27cf83;
  color:#fff;
  font-size:13px;
  font-weight:800;
}
body.single-cs_store .csz-fresh-after-copy .csz-fresh-open-store{
  min-height:52px;
  border-radius:10px;
  font-size:16px;
  font-weight:850;
  box-shadow:0 8px 20px rgba(16,169,112,.18);
}

@media(max-width:760px){
  body.single-cs_store .csz-fresh-after-copy{
    width:100%;
    padding:0 16px 22px;
  }
  body.single-cs_store .csz-fresh-after-copy .csz-fresh-success-icon{
    width:42px;
    height:42px;
    margin-bottom:10px;
    font-size:23px;
  }
  body.single-cs_store .csz-fresh-after-copy > h2{
    margin-bottom:20px!important;
    font-size:30px!important;
  }
  body.single-cs_store .csz-fresh-after-grid{
    grid-template-columns:minmax(0,1.05fr) minmax(132px,.95fr);
    gap:12px;
    align-items:center;
    margin-bottom:20px;
  }
  body.single-cs_store .csz-fresh-after-steps{
    font-size:9.5px;
    line-height:1.35;
  }
  body.single-cs_store .csz-fresh-after-intro{
    margin-bottom:20px!important;
    font-size:9.5px!important;
    line-height:1.3!important;
  }
  body.single-cs_store .csz-fresh-after-steps p:not(.csz-fresh-after-intro){
    margin-bottom:16px!important;
    font-size:9.5px!important;
    line-height:1.35!important;
  }
  body.single-cs_store .csz-fresh-store-preview{
    min-height:200px;
    padding:24px 9px 13px;
    border-width:2px;
    border-radius:15px;
  }
  body.single-cs_store .csz-fresh-preview-close{
    top:5px;
    right:7px;
    font-size:22px;
  }
  body.single-cs_store .csz-fresh-confetti{
    font-size:36px;
    margin-bottom:9px;
  }
  body.single-cs_store .csz-fresh-store-preview h3{
    margin-bottom:9px!important;
    font-size:17px!important;
    line-height:1.02!important;
  }
  body.single-cs_store .csz-fresh-store-preview p{
    margin-bottom:13px!important;
    font-size:8px!important;
    line-height:1.35!important;
  }
  body.single-cs_store .csz-fresh-preview-shop{
    min-height:31px;
    font-size:9px;
  }
  body.single-cs_store .csz-fresh-after-copy .csz-fresh-open-store{
    min-height:46px;
    border-radius:9px;
    font-size:14px;
  }
}

@media(max-width:390px){
  body.single-cs_store .csz-fresh-after-grid{
    grid-template-columns:minmax(0,1fr) minmax(120px,.9fr);
    gap:9px;
  }
  body.single-cs_store .csz-fresh-after-steps,
  body.single-cs_store .csz-fresh-after-intro,
  body.single-cs_store .csz-fresh-after-steps p:not(.csz-fresh-after-intro){
    font-size:8.8px!important;
  }
  body.single-cs_store .csz-fresh-store-preview h3{font-size:15px!important}
}

/* =========================================================
   v3.4.16 — Larger centered Fresh Code after-copy popup on phones
   Keeps the normal coupon modal unchanged. Only the after-copy
   Fresh Code helper receives this mobile presentation.
   ========================================================= */
@media (max-width: 760px) {
  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode {
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 8px !important;
    overflow: auto !important;
    overscroll-behavior: contain;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-modal {
    width: min(430px, calc(100vw - 16px)) !important;
    max-height: calc(100vh - 24px) !important;
    max-height: calc(100dvh - 24px) !important;
    margin: 0 !important;
    border-radius: 16px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    box-shadow: 0 24px 64px rgba(0,0,0,.34) !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-modal-header-band {
    min-height: 50px !important;
    padding: 0 46px 0 14px !important;
    border-radius: 15px 15px 0 0 !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-modal-close {
    top: 9px !important;
    right: 10px !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 25px !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-after-copy {
    width: 100% !important;
    padding: 12px 14px 18px !important;
    box-sizing: border-box !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-success-icon {
    width: 50px !important;
    height: 50px !important;
    margin: 0 auto 10px !important;
    font-size: 28px !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-after-copy > h2 {
    margin: 0 0 18px !important;
    font-size: 34px !important;
    line-height: 1.04 !important;
    font-weight: 900 !important;
    letter-spacing: -0.035em !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-after-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(145px, .94fr) !important;
    gap: 12px !important;
    align-items: center !important;
    margin: 0 0 18px !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-after-steps {
    font-size: 11.5px !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-after-intro {
    margin: 0 0 20px !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    font-weight: 850 !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-after-steps p:not(.csz-fresh-after-intro) {
    margin: 0 0 18px !important;
    font-size: 11.5px !important;
    line-height: 1.45 !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-store-preview {
    min-height: 260px !important;
    padding: 30px 10px 16px !important;
    border-width: 2px !important;
    border-radius: 17px !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-preview-close {
    top: 6px !important;
    right: 8px !important;
    font-size: 24px !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-confetti {
    margin: 0 0 10px !important;
    font-size: 42px !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-store-preview h3 {
    margin: 0 0 10px !important;
    font-size: 20px !important;
    line-height: 1.03 !important;
    font-weight: 900 !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-store-preview p {
    margin: 0 0 14px !important;
    font-size: 9.5px !important;
    line-height: 1.4 !important;
    font-weight: 750 !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-preview-shop {
    min-height: 36px !important;
    font-size: 10.5px !important;
    font-weight: 850 !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-open-store {
    width: 100% !important;
    min-height: 50px !important;
    border-radius: 9px !important;
    font-size: 15.5px !important;
    font-weight: 850 !important;
  }
}

@media (max-width: 370px) {
  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-after-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(136px, .95fr) !important;
    gap: 9px !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-after-steps,
  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-after-intro,
  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-after-steps p:not(.csz-fresh-after-intro) {
    font-size: 10.8px !important;
  }

  body.single-cs_store .csz-modal-overlay.csz-fresh-after-copy-mode .csz-fresh-store-preview h3 {
    font-size: 18.5px !important;
  }
}
