.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; }
