.simple-carousel {
  margin-top: 40px;
  position: relative;
  padding: 10px 0;      /* no side padding so it can go full width */
  max-width: 100%;
}

.carousel-heading {
  font-size: 1.7rem;
  margin: 0 0 10px;
  color: #fff;
  text-align: left;     /* keep heading left; arrows will be on the right */
  position: relative;
}

/* Container spans full column width */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;            /* remove centered 720px constraint */
  padding: 42px 1px 10px; /* top padding to give space for the arrows */
  box-sizing: border-box;
}

/* Horizontal scroller */
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 6px 0 10px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

/* Cards */
.carousel-card {
  min-width: 200px;
  max-width: 200px;
  background: #191919;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  flex: 0 0 auto;
  transition: transform 0.3s;
}
.carousel-card:hover { transform: scale(1.03); }

.carousel-image {
  width: 100%;
  height: 120px;        /* unified size */
  object-fit: cover;    /* keeps aspect, fills without distortion */
  border-radius: 6px;
  background: #111;
  display: block;
}

.carousel-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 8px 0 0;
}

.btn-mini {
  background: linear-gradient(135deg, #00ffe1, #007c6c);
  color: #000;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-block;
  margin-top: 8px;
}

.rating { margin-top: 8px; }

/* Arrows: both top-right */
.carousel-nav {
  position: absolute;
  top: 6px;             /* within the container top padding */
  right: 10px;
  transform: none;      /* no center translate */
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: 1px solid #2a2a2a;
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.carousel-nav:hover { background: rgba(0,0,0,0.9); }

.carousel-nav.left  { right: 56px; }   /* left button sits to the left of right button */
.carousel-nav.right { right: 10px; }

@media (max-width: 768px) {
  .carousel-card {
    min-width: 160px;
    max-width: 160px;
  }
  .carousel-image { height: 105px; }
  .carousel-nav { top: 4px; }
  .carousel-nav.left { right: 52px; }
}
