/* FC Woo Category Carousel for Elementor */
.fcwcc-wrapper { position: relative; }
.fcwcc-swiper { overflow: hidden; }

.fcwcc-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fcwcc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}

.fcwcc-card-image img,
.fcwcc-placeholder {
  width: 100%;
  height: 0;
  padding-bottom: 66.66%;
  object-fit: cover;
  display: block;
  background: #f3f4f6;
}

.fcwcc-card-body { padding: 12px; }
.fcwcc-card-title { font-weight: 600; margin-bottom: 6px; }
.fcwcc-card-count { font-size: 12px; opacity: .8; }

.fcwcc-nav {
  position: absolute;
  inset-inline: 6px;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.fcwcc-nav button {
  pointer-events: all;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  width: 40px; height: 40px;
  display:flex;align-items:center;justify-content:center;
  cursor: pointer;
}
.fcwcc-nav button:hover { background: #fff; }

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