.aknpc-home-carousel { margin: 2rem 0 3rem; }
.aknpc-header { display:flex; justify-content:space-between; align-items:center; gap:1rem; margin-bottom:1rem; }

.aknpc-home-carousel .tns-outer {
  position: relative;
}

.aknpc-slide { background:#fff; border:1px solid rgba(0,0,0,.08); margin: 0 4px; }
.aknpc-slide img { width:100%; aspect-ratio:1/1; object-fit:cover; display:block; }
.aknpc-content { padding:1rem; }
.aknpc-content h3 { font-size:1rem; margin:0 0 .5rem; }
.aknpc-price { font-weight:700; }

.tns-nav { text-align:center; margin-top:1rem; }
.tns-nav button { width:8px; height:8px; border-radius:50%; margin:0 4px; background:rgba(0,0,0,.2); border:none; }
.tns-nav button.tns-nav-active { background:#000; }

.tns-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
  margin-bottom: 0;
}

.tns-controls button {
  pointer-events: auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

.tns-controls button:first-child {
  margin-left: -4px;
}

.tns-controls button:last-child {
  margin-right: -4px;
}

.tns-controls button:hover {
  background: #f5f5f5;
}

@media (max-width: 576px) {
  .tns-controls button {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}