/* Slick slider theme overrides for TastyTruck
 * Keep this lightweight – core layout is handled in slick.css and style.css
 */

/* Base arrows – we mainly use custom buttons in the markup, so keep this minimal */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  background: transparent;
}

.slick-prev {
  left: -25px;
}

.slick-next {
  right: -25px;
}

/* Dots – not used for testimonials right now, but safe defaults */
.slick-dots {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  border-radius: 50%;
  background: #d8d8d8;
}

.slick-dots li.slick-active button {
  background: #d0171c;
}


