.font-weight-bigger-paz {
  font-weight: 555 !important;
  font-size: 2.2em;
}

/* Big price without breaking your theme */
.price-big { line-height: 1; }
.price-big .text-primary { font-weight: 700; }

/* Feature bullets spacing */
.feature-bullets li { line-height: 1.35; }

/* Sticky buy card on desktop */
@media (min-width: 992px) {
  .product-buycard {
    position: sticky;
    top: 90px; /* adjust if you have a fixed navbar */
  }
}


/* --- Amazon-like gallery --- */
.amazon-gallery-wrap {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
}

.amazon-gallery {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
}

/* Thumbnails */
.amazon-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 4px;
}

.amazon-thumb {
  border: 1px solid rgba(0,0,0,0.18);
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.amazon-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.amazon-thumb:hover {
  border-color: rgba(0,0,0,0.35);
}

.amazon-thumb.active {
  border-color: #f0c14b; /* Amazon-ish highlight */
  box-shadow: 0 0 0 3px rgba(240,193,75,0.35);
}

/* Main image */
.amazon-main {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 10px;
  min-height: 420px;
}

.amazon-main-img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Mobile: thumbs become horizontal row */
@media (max-width: 991.98px) {
  .amazon-gallery {
    grid-template-columns: 1fr;
  }

  .amazon-thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding-right: 0;
  }

  .amazon-thumb {
    min-width: 72px;
  }

  .amazon-main {
    min-height: 320px;
  }
}
.amazon-thumbs { display: flex !important; }
.amazon-thumb  { display: block !important; width: 72px; }
.amazon-thumb img { width: 100% !important; height: auto !important; }







.credibility-section {
  background: #fafafa;
}

.credibility-subtitle {
  max-width: 760px;
  margin: 0 auto 24px auto;
  color: #666;
}

.credibility-group-title {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Available At */
.credibility-card {
  padding: 12px 10px;
  text-align: center;
}

.credibility-card a {
  text-decoration: none;
  color: inherit;
}

.credibility-logo {
  height: 64px;
  max-width: 220px;
  width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px auto;
  opacity: 0.9;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.credibility-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.credibility-card h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #222;
}

/* Featured At rotator */
.featured-rotator {
  position: relative;
}

.featured-slide {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.featured-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.featured-slide-inner {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  /* padding: 8px 10px 4px; */
   padding: 20px 10px 10px;
  text-align: center;
}

.featured-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-logo-wrap {
  width: 100%;
  max-width: 320px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.featured-logo {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.featured-content {
  max-width: 620px;
  margin: 0 auto;
}

.featured-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a8a8a;
  margin-bottom: 4px;
}

.featured-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f1f1f;
}

.featured-blurb {
  color: #666;
  line-height: 1.75;
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* nicer dots */
.featured-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.featured-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: #d6d6d6;
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease, box-shadow 0.25s ease;
}

.featured-dot:hover {
  background: #a8a8a8;
}

.featured-dot.active {
  width: 30px;
  background: #222;
  box-shadow: 0 0 0 4px rgba(34, 34, 34, 0.08);
}

/* Desktop layout */
@media (min-width: 992px) {
  .featured-slide-inner {
    min-height: 340px;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 34px;
    text-align: left;
    padding: 24px 10px 10px;
  }

  .featured-media {
    justify-content: center;
  }

  .featured-logo-wrap {
    max-width: 260px;
    height: 140px;
    margin: 0 auto;
  }

  .featured-logo {
    max-height: 120px;
  }

  .featured-content {
    max-width: none;
    margin: 0;
  }

  .featured-dots {
    justify-content: flex-start;
    padding-left: 314px;
  }
}




.product-card {
  overflow: visible;
}

.product-hover-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  transform-origin: center center;
  will-change: transform;
}

.product-hover-card:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  z-index: 2;
  position: relative;
}




/* --- Connect Capture Form --- */
.lzp-landing {
  position: relative;
  overflow: hidden;
  padding: 4rem 1rem;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.lzp-landing-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 208, 0, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 119, 20, 0.14), transparent 28%),
    linear-gradient(135deg, #fffdf9 0%, #fff8f3 45%, #ffffff 100%);
  z-index: 0;
}

.lzp-landing .container {
  position: relative;
  z-index: 1;
}

.lzp-landing-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.lzp-landing-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #1f1f1f;
}

.lzp-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(221, 45, 70, 0.08);
  color: #dd2d46;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lzp-subheading {
  margin: 0 0 1.5rem;
  max-width: 640px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #4b4b4b;
}

.lzp-benefits {
  margin: 0;
  padding-left: 1.2rem;
  color: #2d2d2d;
  line-height: 1.9;
}

.lzp-form-card {
  position: relative;
}

.lzp-form-card-inner {
  padding: 1.6rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.lzp-form-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff7714;
}

.lzp-form-title {
  margin: 0 0 0.4rem;
  font-size: 1.75rem;
  line-height: 1.1;
  color: #1c1c1c;
}

.lzp-form-copy {
  margin: 0 0 1.25rem;
  color: #5a5a5a;
  line-height: 1.6;
}

.lzp-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lzp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.lzp-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lzp-field label {
  font-size: 0.93rem;
  font-weight: 700;
  color: #1f1f1f;
}

.lzp-field input,
.lzp-field select,
.lzp-field textarea {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.lzp-field input:focus,
.lzp-field select:focus,
.lzp-field textarea:focus {
  outline: none;
  border-color: #dd2d46;
  box-shadow: 0 0 0 4px rgba(221, 45, 70, 0.10);
}

.lzp-consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #3d3d3d;
}

.lzp-consent input {
  margin-top: 0.22rem;
}

.lzp-turnstile-wrap {
  padding-top: 0.25rem;
}

.lzp-submit {
  border: 0;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #dd2d46, #ff7714);
  box-shadow: 0 12px 28px rgba(221, 45, 70, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lzp-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(221, 45, 70, 0.28);
}

.lzp-privacy,
.lzp-status {
  margin: 0;
  font-size: 0.92rem;
  color: #666;
}

.lzp-status {
  min-height: 1.25rem;
}

.lzp-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 960px) {
  .lzp-landing {
    padding: 2.25rem 1rem 3rem;
    min-height: auto;
  }

  .lzp-landing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lzp-form-grid {
    grid-template-columns: 1fr;
  }

  .lzp-form-card-inner {
    padding: 1.2rem;
  }
}