/* Fuente */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* Contenedor general */
body {
  min-height: 100vh;
}

/* Slider */
.card-wrapper {
  max-width: 1100px;
  margin: 0 60px 35px;
  padding: 20px 10px;
  overflow: hidden;
}

/* Lista */
.card-list .card-item {
  list-style: none;
}

/* Tarjeta */
.card-list .card-item .card-link {
  display: block;
  background: #fff;
  padding: 18px;
  border-radius: px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 10px 10px rgba(0,0,0,0.05);
  transition: 0.2s ease;
}

.card-list .card-item .card-link:active {
  cursor: grabbing;
}

.card-list .card-item .card-link:hover {
  border-color: #0d1f14;
}

/* Imagen */
.card-list .card-link .card-image {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Badge */
.card-list .card-link .badge {
  color: #0d1f14;
  width: fit-content;
  padding: 8px 16px;
  font-size: 0.95rem;
  border-radius: 50px;
  font-weight: 500;
  background: #DDE4FF;
  margin: 16px 0 18px;
}

/* Variantes */
.card-list .card-link .badge-designer {
  color: #205C20;
  background: #D6F8D6;
}

.card-list .card-link .badge-gamer {
  color: #5c5620;
  background: #f8f8d6;
}
.card-list .card-link .badge-blu {
  color: #20495c;
  background: #d6e6f8;
}

/* Título */
.card-list .card-link .card-title {
  color: #000;
  font-size: 1.19rem;
  font-weight: 600;
}

/* Botón */
.card-list .card-link .card-button {
  height: 35px;
  width: 35px;
  color: #0d1f14;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #0d1f14;
  transform: rotate(-45deg);
  transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
  color: #fff;
  background: #0d1f14;
}

/* Swiper */
.card-wrapper .swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: #0d1f14;
}

.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Contenedor relativo */
.container-slider {
  position: relative;
}

/* Botones bien centrados */
.card-wrapper .swiper-button-prev,
.card-wrapper .swiper-button-next {
  color: #0d1f14;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  z-index: 10;
}

/* Separarlos del contenido */
.card-wrapper .swiper-button-prev {
  left: 0px;
}

.card-wrapper .swiper-button-next {
  right: -4px;
}

/* Responsive */
@media (max-width: 768px) {
  .card-wrapper {
    margin: 0 10px 25px;
  }

  .card-wrapper .swiper-button-prev,
  .card-wrapper .swiper-button-next {
    display: none;
  }
}