/* MakeWebsite Carousel Styles - Full Width Auto */
.mw-carousel-section {
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 2rem 0;
  overflow: hidden;
}

.mw-carousel-empty {
  text-align: center;
  padding: 3rem;
  color: #6b7280;
}

.mw-carousel-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
  display: block;
}

.mw-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.mw-carousel-track {
  display: flex;
  gap: 1rem;
  width: fit-content;
  will-change: transform;
}

.mw-carousel-item {
  flex: 0 0 auto;
  width: 180px;
  background: transparent;
  border-radius: 16px;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.mw-carousel-item:hover {
  transform: translateY(-5px);
}

.mw-carousel-logo-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  background: white;
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.mw-carousel-item:hover .mw-carousel-logo-wrapper {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: scale(1.05);
}

.mw-carousel-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.mw-carousel-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  color: white;
  font-size: 2.5rem;
}

.mw-carousel-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1d29;
  margin: 0;
  line-height: 1.2;
  word-break: break-word;
}

/* Responsive */
@media (max-width: 768px) {
  .mw-carousel-item {
    width: 140px;
    padding: 0.75rem 0.5rem;
  }
  
  .mw-carousel-logo-wrapper {
    width: 80px;
    height: 80px;
    padding: 0.5rem;
    margin-bottom: 0.4rem;
  }
  
  .mw-carousel-logo-placeholder {
    font-size: 2rem;
  }
  
  .mw-carousel-name {
    font-size: 0.85rem;
  }
  
  .mw-carousel-track {
    gap: 0.75rem;
  }
  
  .mw-carousel-section {
    padding: 3rem 0;
  }
}

