/* rc_categoryscroll - Eco Bricolegno */

.rc_categoryscroll {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 10px 0;
  display: block;
  text-align: center;
  position: relative;
  z-index: 5;
  background: transparent;
  overflow: visible !important;
}

.rc_categoryscroll .owl-carousel,
.rc_categoryscroll .rc_scroll_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.rc_categoryscroll .rc_scroll_item {
  flex: 0 0 auto;
  width: 200px;
  text-align: center;
}

.rc_categoryscroll .rc_scroll_item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.rc_categoryscroll .rc_scroll_item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.rc_categoryscroll .rc_scroll_item:hover img {
  transform: scale(1.05);
}

.rc_categoryscroll .rc_scroll_name {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

@media (max-width:768px) {
  .rc_categoryscroll .rc_scroll_item {
    width: 140px;
  }
  .rc_categoryscroll .rc_scroll_name {
    font-size: 13px;
  }
}

.rc_categoryscroll { background: rgba(0,255,0,0.05); border: 1px dashed lime; }

