.main-popularity-section {
  width: 100%;
  padding: 160px 0;
  background-color: #fff;
}

.main-popularity-section > .main-popularity-inner-container {
  width: 100%;
  max-width: 1240px;
  margin: auto;
}

.section-slider-container {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible; /* 상하 잘림 방지 */
  scrollbar-width: thin;
  scrollbar-color: #ddd #f5f5f5;
  padding: 50px 0; /* 패딩 증가하여 호버 효과 공간 확보 */
  cursor: grab;
  user-select: none;
}

.section-slider-container::-webkit-scrollbar {
  height: 8px;
}

.section-slider-container::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 4px;
}

.section-slider-container::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

.section-slider-container::-webkit-scrollbar-thumb:hover {
  background: #bbb;
}

.section-slider-container.dragging {
  cursor: grabbing;
}

.section-side-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 5px !important;
}

.section-side-slider > .section-side-slider-item {
  position: relative;
  flex: 0 0 auto;
  width: 295px;
  height: 360px;
  padding: 30px;
  border: 1px solid #ddd;
  color: #231f20;
  margin-right: 20px;
  min-width: 0;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.section-side-slider > .section-side-slider-item:hover {
  border-color: #231f20;
}

.section-side-slider-index {
  font-family: "din-condensed";
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -2%;
}

.section-side-slider-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-side-slider-desc {
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  letter-spacing: -2%;
  overflow-wrap: break-word;
  word-break: break-word;
  width: 100%;
  white-space: normal;
}

.section-side-slider-price {
  position: absolute;
  bottom: 30px;
  right: 30px;

  font-size: 14px;
  line-height: 20px;
  letter-spacing: -2%;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .main-popularity-section {
    padding: 80px 20px;
  }

  .section-side-slider {
  }

  .container-sub {
    margin-bottom: 30px;
  }

  .section-slider-container {
    margin-top: 0 !important;
    padding-top: 0;
  }

  .section-side-slider > .section-side-slider-item {
    width: 250px;
    height: 320px;
    padding: 20px;
    margin-right: 0px;
  }

  .section-side-slider-index {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .section-side-slider-title {
    font-size: 16px;
  }

  .section-side-slider-desc {
    font-size: 13px;
    line-height: 18px;
  }

  .section-side-slider-price {
    font-size: 13px;
    bottom: 20px;
    right: 20px;
  }
}

/* 드래그 중 스타일 */
.section-side-slider.dragging {
  cursor: grabbing;
}

.section-side-slider.dragging .section-side-slider-item {
  pointer-events: none;
}
