.whyexperts-article .whyexperts-icon {height: 103px;width: 103px;border-radius: 10px;border: 1px solid #F0F0F0;background: #FFF;box-shadow: 0 71px 20px 0 rgba(0, 0, 0, 0.00), 0 45px 18px 0 rgba(0, 0, 0, 0.01), 0 25px 15px 0 rgba(0, 0, 0, 0.05), 0 11px 11px 0 rgba(0, 0, 0, 0.09), 0 3px 6px 0 rgba(0, 0, 0, 0.10);}
.whyexperts-content h4 {margin-bottom: 8px;}

/* Content column: narrower on ~1600, full 6xl on ~1920+ (room for float bag) */
@media (min-width: 1024px) {
  .product-content-max {
    max-width: 65rem; /* ~max-w-4xl — tighter on 1600 */
  }
      .spec-table {
        max-width: 65rem;
    }
}

@media (min-width: 1800px) {
  .product-content-max {
    max-width: 72rem; /* max-w-6xl on 1920+ */
  }
}

/* ---- GreenPro certification ---- */
.greenpro-section {
  background-color: #fcfcfc;
}

.greenpro-section .greenpro-copy {
  margin-bottom: 1.75rem;
  max-width: 42rem;
}

.greenpro-section .greenpro-copy p {
  max-width: 100%;
}

.greenpro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.greenpro-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.55rem 1rem;
  border: 1px solid #EAEAEA;
  border-radius: 100px;
  background: #fff;
  color: var(--color-primary, #231F20);
  font-size: var(--text-small, 0.875rem);
  font-weight: 500;
  line-height: 1.3;
}

.greenpro-chip::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-secondary, #ED1C24);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .greenpro-chips {
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
  }

  .greenpro-chip {
    justify-content: flex-start;
    width: 100%;
  }
}

/* ---- Product bag: fixed until CTA, then release (no fade-out at end) ---- */
.product-float-rail {
  position: relative;
  height: 0;
  z-index: 30;
  pointer-events: none;
}

.product-float-sticky {
  position: fixed;
  top: calc(var(--header-h, 80px) + 10vw);
  /*
   * Align to .container right edge (width: 90%; max-width: 1680px).
   * Below ~1867px gutter ≈ 5vw; on larger screens gutter grows with the
   * centered container so the bag does not drift into the grey margin.
   */
  right: max(0.75rem, calc((100vw - min(85vw, 1680px)) / 2));
  left: auto;
  z-index: 30;
  /* Shared frame size so OPC / PPC / Bulk images occupy the same box */
  --product-float-w: min(30vw, 320px);
  --product-float-ratio: 3 / 4;
  width: var(--product-float-w);
  margin: 0;
  pointer-events: none;
  will-change: opacity;
  transform: none;
  opacity: 0;
  visibility: hidden;
}

/* Parked inside CTA — scrolls away with section, stays fully visible */
.cta-band .product-float-sticky.is-released {
  position: absolute;
  z-index: 5;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.product-float-inner {
  position: relative;
  width: 100%;
  aspect-ratio: var(--product-float-ratio, 3 / 4);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.product-float-inner .product-float-bag {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.product-float-inner .product-shadow-ellipse {
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 95%;
  height: auto;
  pointer-events: none;
}

/* CTA lion — centered in section */
.cta-band .logo-lion-vector-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(72vw, 560px);
  max-width: 560px;
  pointer-events: none;
}
.cta-band .logo-lion-vector-outer .lion-logo-svg {
  width: 100%;
  max-width: none;
  height: auto;
}
.cta-band .container {
  position: relative;
  z-index: 1;
}

.product-site-link {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  text-align: center;
  pointer-events: auto;
}
.product-site-link a {
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

/* Bulk cement only — truck float (white card + wider frame) */
.product-float-sticky--bulk {
  --product-float-w: min(36vw, 360px);
  --product-float-ratio: 3 / 4;
  width: var(--product-float-w);
}
.product-float-sticky--bulk .product-float-inner {
  align-items: center;
  aspect-ratio: inherit;
}
.product-float-sticky--bulk .product-float-bag {
  object-position: center center;
}
.product-float-sticky--bulk .product-site-link {
  margin-top: 0.85rem;
}

/* ---- Tables: sticky thead + right fade (mobile) ---- */
.table-scroll {
  position: relative;
}
.table-scroll-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.table-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
  z-index: 6;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.bg-\[\#F4F4F4\] .table-scroll::after,
.compressivestrength-section .table-scroll::after {
  background: linear-gradient(to right, rgba(244, 244, 244, 0), #f4f4f4);
}


/* ---- Download FAB: hover opens brochure / data sheet pills ---- */
.product-download-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 6.5rem;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  /* Closed: only the round button captures clicks (pills stay out of the way) */
  pointer-events: none;
}

.product-download-fab .product-float-button {
  pointer-events: auto;
}

/* While open / hovered, allow the pill row + gap to receive events */
.product-download-fab.is-open,
.product-download-fab:focus-within {
  pointer-events: auto;
}
@media (hover: hover) and (pointer: fine) {
  .product-download-fab:hover {
    pointer-events: auto;
  }
}

.product-download-fab-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(14px);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.28s;
}

.product-download-fab-actions .product-download-pill {
  pointer-events: none;
}

/* Desktop: open on hover / focus */
@media (hover: hover) and (pointer: fine) {
  .product-download-fab:hover .product-download-fab-actions,
  .product-download-fab:focus-within .product-download-fab-actions {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    transition-delay: 0s;
  }

  .product-download-fab:hover .product-download-fab-actions .product-download-pill,
  .product-download-fab:focus-within .product-download-fab-actions .product-download-pill {
    pointer-events: auto;
  }

  .product-download-fab:hover .product-float-button,
  .product-download-fab:focus-within .product-float-button {
    background: #ed1c24;
  }
}

.product-download-fab.is-open .product-download-fab-actions {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.product-download-fab.is-open .product-download-fab-actions .product-download-pill {
  pointer-events: auto;
}

.product-download-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 12px 18px;
  border-radius: 9999px;
  background: #fff;
  color: #231f20;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  box-shadow:
    0 8px 24px rgba(35, 31, 32, 0.12),
    0 2px 6px rgba(35, 31, 32, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.28s ease;
}
.product-download-pill img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.product-download-pill:hover {
  transform: translateY(-1px);
  box-shadow:
    0 10px 28px rgba(35, 31, 32, 0.16),
    0 3px 8px rgba(35, 31, 32, 0.08);
}

.product-float-button {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #231f20;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow:
    0 8px 24px rgba(35, 31, 32, 0.18),
    0 2px 6px rgba(35, 31, 32, 0.08);
  transition: background 0.3s ease, transform 0.3s ease;
}
.product-float-button img {
  width: 20px;
  height: 22px;
  transition: transform 0.3s ease;
}
.product-download-fab.is-open .product-float-button,
.product-float-button:hover {
  background: #ed1c24;
}

.lion-red-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
}
.spec-table.spacing-table-td td:first-child {padding-left: 85px;}

/* Mobile: tap toggle + stack pills above so nothing clips */
@media (max-width: 767px) {
  .product-download-fab {
    right: 0.75rem;
    bottom: 5.5rem;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .product-download-fab-actions {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    width: max-content;
    max-width: calc(100vw - 1.5rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
  }

  .product-download-fab.is-open .product-download-fab-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .product-download-pill {
    justify-content: space-between;
    width: auto;
    max-width: calc(100vw - 1.5rem);
    padding: 12px 16px;
    font-size: 13px;
    gap: 10px;
    box-sizing: border-box;
  }

  .product-float-button {
    width: 48px;
    height: 48px;
  }

  .product-float-button img {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-download-fab-actions,
  .product-download-pill,
  .product-float-button {
    transition: none;
  }
}


@media (max-width: 1023px) {
  /* Mobile/tablet: in-flow static bag (no pin) */
  .product-float-rail {
    height: auto;
    z-index: 5;
  }

  .product-float-sticky {
    position: relative;
    top: auto;
    right: auto;
    z-index: 5;
    --product-float-w: min(58vw, 240px);
    width: var(--product-float-w);
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(-1 * min(28vh, 200px));
    margin-bottom: 1.5rem;
    will-change: auto;
    opacity: 1;
    visibility: visible;
  }

  .product-float-sticky--bulk {
    --product-float-w: min(72vw, 300px);
    width: var(--product-float-w);
    max-width: 300px;
  }

  .product-float-inner {
    width: 100%;
    margin-inline: auto;
  }

  .table-scroll.is-scrollable:not(.is-at-end)::after {
    opacity: 1;
  }

  /* overflow:hidden on table blocks sticky */
  .table-scroll table {
    overflow: visible;
  }

  .table-scroll thead th {
    position: sticky;
    top: 0;
    z-index: 4;
    background: radial-gradient(222.5% 222.5% at 50% 50%, #ed1c24 0%, #231f20 100%);
  }
}

@media (min-width: 1024px) {
  .table-scroll::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .product-float-sticky {
    --product-float-w: min(80vw, 180px);
    width: var(--product-float-w);
    max-width: 180px;
    margin-top: calc(-1 * min(10vh, 160px));
  }

  .product-float-sticky--bulk {
    --product-float-w: min(88vw, 260px);
    width: var(--product-float-w);
    max-width: 260px;
    padding: 0.75rem 0.75rem 0.85rem;
  }

  .product-float-inner {
    width: 100%;
  }

  .cta-band .logo-lion-vector-outer {
    width: min(90vw, 360px);
  }
  .whyexperts-article .whyexperts-icon {
    height: 65px;
    width: 65px;
  }
  .whyexperts-article .whyexperts-icon img {
    width: 35px;
    height: 35px;
  }
  .whyexperts-article {gap: 15px;}
  .bestfor-grid-outer {align-items: baseline;}
  .bestfor-grid { text-align: start; align-items: start;}
}
@media (min-width: 1367px) and (max-width: 1536px) {
.product-content-max {max-width: 58rem;}
.spec-table {max-width: 58rem;}
}

@media (min-width: 1200px) and (max-width: 1366px) {
  .cta-band .logo-lion-vector-outer{width: min(72vw, 420px);max-width: 420px;}
  .product-content-max {max-width: 55rem;}
  .spec-table {max-width: 52rem;}
  .whyexperts-article .whyexperts-icon {height: 80px;width: 80px;}
  .whyexperts-content p {font-size: 1rem;}
  .whyexperts-article {gap:20px;}
  .product-float-sticky {
    --product-float-w: min(30vw, 200px);
    width: var(--product-float-w);
    right: max(0.75rem, calc((100vw - min(90vw, 1680px)) / 2));
    top: calc(var(--header-h, 80px) + 10vw);
  }
  .product-float-sticky--bulk {
    --product-float-w: min(34vw, 280px);
    width: var(--product-float-w);
  }
  .product-float-button {width: 46px;height: 46px;}
  .product-float-button img {width: 16px;height: 17px;}
  .product-download-fab {right: 0.75rem;}
    .whyexperts-article .whyexperts-icon img { max-height: 45px;}
}