/** Shopify CDN: Minification failed

Line 195:0 Unexpected "}"

**/
/* =========================================================
   Adhesive PRO description (top performance block)
   Keeps current styling, removes duplicate/overwriting rules
   Uses --adh-accent (set inline in the section)
   ========================================================= */

/* Section spacing */
.adh-pro{
  padding: 18px 0;
}

/* Match page width */
.adh-pro__inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Main glass panel with accent outline */
.adh-pro__panel{
  background: rgba(248,248,247,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  border-color: color-mix(in srgb, var(--adh-accent, #a8a9ad) 30%, rgba(0,0,0,0.10));
  border-radius: 18px;
  padding: 18px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

/* Layout */
.adh-pro__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 900px){
  .adh-pro__grid{ grid-template-columns: 1fr; }
}

/* Headings */
.adh-pro__headline{
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.adh-pro__sub{
  margin: 0 0 14px;
  opacity: 0.9;
}

/* Media */
.adh-pro__media{ display: grid; gap: 12px; }

.adh-pro__video{
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
}

.adh-pro__video video{
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
  object-fit: contain;
}
.adh-pro__video--proof video{ max-height: 280px; }

.adh-pro__caption{
  padding: 10px 12px 12px;
  font-size: 0.95em;
  line-height: 1.45;
}

/* =========================================================
   Pills (chips) – subtle outline (cap color), glass feel
   ========================================================= */
.adh-pro__chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;

  max-width: 100%;
  white-space: nowrap;

  border-radius: 999px;
  padding: 8px 12px;

  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.10);
  border-color: color-mix(in srgb, var(--adh-accent, #a8a9ad) 30%, rgba(0,0,0,0.10));

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #201f1d;
  font-size: 0.95em;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);

  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.adh-pro__chip strong{
  color: #201f1d;
  font-weight: 800;
}

.adh-pro__chip:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.10);
  border-color: color-mix(in srgb, var(--adh-accent, #a8a9ad) 45%, rgba(0,0,0,0.10));
}

@media (max-width: 520px){
  .adh-pro__chip{ white-space: normal; line-height: 1.25; }
}

/* Spacing rhythm (no divider lines) */
.adh-pro__chips{ margin-bottom: 30px; }

/* =========================================================
   Badges – glass tags with wave icons
   ========================================================= */
.adh-pro__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  justify-content: center;
}

.adh-pro__badge{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(248,248,247,0.62);
  border: 1px solid rgba(0,0,0,0.10);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 10px 24px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.60);

  font-family: Futura, "Futura PT", "Avenir Next", Avenir, Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 16px; /* +2pts from 14px */
  line-height: 1;
  color: #201f1d;

  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.adh-pro__badge:hover{
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--adh-accent, #a8a9ad) 25%, rgba(0,0,0,0.10));
  box-shadow:
    0 14px 30px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.65);
}

/* Leading wave */
.adh-pro__badge::before{
  content: "〰️";
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  transform: translateY(-1px);
}

.adh-pro__badge .adh-pro__wave{
  display: inline-block;
  margin-left: 3px;
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  transform: translateY(-1px);
}
}

/* Gloss highlight streak */
.adh-pro__badge::after{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.55),
    rgba(255,255,255,0.10) 38%,
    rgba(255,255,255,0) 60%
  );
}

/* =========================================================
   Feature cards
   ========================================================= */
.adh-pro__cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin: 0 0 14px;
}
@media (max-width: 900px){
  .adh-pro__cards{ grid-template-columns: 1fr; }
}

.adh-pro__card{
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 12px 12px 14px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.adh-pro__card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.10);
}

.adh-pro__card h4{
  margin: 0 0 6px;
  font-size: 1em;
  color: #201f1d;
}

.adh-pro__card p{
  margin: 0;
  line-height: 1.45;
  opacity: 0.92;
}

/* =========================================================
   Pro tips (details) – same chevron style as More info
   ========================================================= */
.adh-pro details{
  margin-top: 10px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  overflow: hidden;

  background: rgba(248,248,247,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.adh-pro details:hover{
  border-color: rgba(0,0,0,0.16);
  box-shadow: 0 14px 32px rgba(0,0,0,0.10);
}

/* Click row */
.adh-pro details > summary{
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 18px;
  font-weight: 900;
  color: #201f1d;

  cursor: pointer;
  list-style: none;
  background: transparent;

  transition: background 160ms ease;
}

.adh-pro details > summary::-webkit-details-marker{ display:none; }

/* Accent stripe */
.adh-pro details > summary::before{
  content: "";
  width: 10px;
  height: 28px;
  border-radius: 999px;
  background: var(--adh-accent, #a8a9ad);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

/* Chevron */
.adh-pro details > summary::after{
  content: "›";
  margin-left: auto;
  font-size: 36px;
  line-height: 1;
  opacity: 0.55;
  transform: rotate(90deg);
  transition: transform 180ms ease, opacity 180ms ease;
  color: var(--adh-accent, #a8a9ad);
}

.adh-pro details > summary:hover{
  background: rgba(255,255,255,0.35);
}

.adh-pro details[open]{
  border-color: color-mix(in srgb, var(--adh-accent, #a8a9ad) 35%, rgba(0,0,0,0.10));
}
.adh-pro details[open] > summary::after{
  transform: rotate(-90deg);
  opacity: 0.9;
}

/* Content */
.adh-pro__details{
  padding: 12px 18px 16px;
  line-height: 1.55;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.75);
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce){
  .adh-pro__chip,
  .adh-pro__card,
  .adh-pro__badge,
  .adh-pro details,
  .adh-pro details > summary::after{
    transition: none !important;
  }
}
/* Match xD / pro section width (wider than 1100) */
.adh-desc{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Description video: light background + sensible height */
.adh-desc-video{
  margin: 0 0 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f8f7; /* light, not black */
  border: 1px solid rgba(0,0,0,0.10);
}

.adh-desc-video video{
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
  object-fit: contain;   /* keeps whole frame */
  background: #f8f8f7;   /* makes the “margins” light */
}

.adh-pro__video--proof img{
  width: 100%;
  height: auto;
  display: block;
  background: #f8f8f7;
}

/* Wave bullets with perfect alignment */
.adh-desc ul{
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.adh-desc li{
  position: relative;
  padding-left: 1.7em;
  margin: 0 0 8px;
}

.adh-desc li::before{
  content: "〰️";
  position: absolute;
  left: 0;
  top: 0;
}