a{text-decoration:none !important;}
.equip-recommended {
  margin-top: 40px;
}
.reco-item {
  width: 210px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.reco-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.reco-meta {
  padding: 10px;
}

.reco-title {
  font-size: 14px;
  font-weight: 600;
}

.reco-price {
  font-size: 15px;
  color: #d33;
  font-weight: bold;
  margin-top: 5px;
}
.reco-count {
  font-size: 14px;
  color: #888;
  font-weight: normal;
  margin-left: 5px;
}
/*************************************
 *  RECOMMENDED EQUIPMENT SLIDER
 *************************************/

/* 전체 영역 */
.equip-recommended {
    margin: 40px 0;
}

.equip-recommended h3 {
    font-size: 20px;
    font-weight: 600;
	margin-top: 50px;
    margin-bottom: 0px;
}

.equip-reco-slider .slick-slide {
    padding: 5px;
    box-sizing: border-box;
}

/* 카드 */
.reco-item {
    width: 240px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.10);
    margin: 0 10px;
    transition: transform .15s ease, box-shadow .15s ease;
    text-decoration: none;          /* 링크 밑줄 제거 */
}

.reco-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* 이미지 영역 */
.reco-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #f2f2f2;
}

.reco-thumb img {
    height: 100%;
    width: auto;
    max-width: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
}

/* 정보 영역 */
.reco-meta {
    padding: 10px;
}

.reco-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
    line-height: 1.15;            /* 텍스트 간격 낮춤 */
    text-decoration: none;        /* 밑줄 제거 */
}

.reco-year {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

.reco-price {
    font-size: 15px;
    font-weight: bold;
    color: #d23;
    margin-top: 6px;
    line-height: 1.2;
}

.reco-count {
    font-size: 14px;
    color: #f00;
    font-weight: bold;
    margin-left: 5px;
}

/* 모바일 이미지 높이 조정 */
@media (max-width: 768px) {
    .reco-thumb {
        height: 100px;
    }
	.slick-list{
		padding:0 !important;
	}
}
/* 슬릭 화살표 전체 공통 */
.equip-reco-slider .slick-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);        /* 반투명 배경으로 가독성 ↑ */
    color: #fff !important;               /* 화살표 색 */
    font-size: 0;                         /* 기본 텍스트 제거 */
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background .2s ease;
}

.equip-reco-slider .slick-arrow:hover {
    background: rgba(0,0,0,0.7);
}

/* 아이콘 크기 키우기 */
.equip-reco-slider .slick-prev:before,
.equip-reco-slider .slick-next:before {
    font-family: "slick";
    font-size: 22px;                      /* 기본은 20px → 크게 */
    line-height: 1;
    opacity: 1 !important;                /* 완전 출력 */
    color: #fff !important;
}

/* 좌우 위치 미세 조정 */
.equip-reco-slider .slick-prev {
    left: -10px !important;
}
.equip-reco-slider .slick-next {
    right: -10px !important;
}
/* 슬릭 기본 화살표 숨기기 */
.equip-reco-slider .slick-prev:before,
.equip-reco-slider .slick-next:before {
    content: "";
}

/* 화살표 공통 스타일 */
.equip-reco-slider .slick-arrow {
    width: 30px;
    height: 30px;
    border-radius:0px;
    background: rgba(0,0,0,0.45);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background .2s ease;
}

.equip-reco-slider .slick-arrow:hover {
    background: rgba(0,0,0,0.75);
}

/* Font Awesome 아이콘 크기/색 */
.equip-reco-slider .slick-arrow i {
    font-size: 15px;
    color: #fff;
}

/* 좌우 위치 */
.equip-reco-slider .slick-prev {
    left: 0px !important;
}
.equip-reco-slider .slick-next {
    right: 0px !important;
}

/* slick-prev 안에 아이콘 삽입 */
.equip-reco-slider .slick-prev {
    content: "";
}
.equip-reco-slider .slick-prev i {
    pointer-events: none;
}

/* slick-next 안에 아이콘 삽입 */
.equip-reco-slider .slick-next {
    content: "";
}
.equip-reco-slider .slick-next i {
    pointer-events: none;
}
.slick-list{
	padding:20px 0;
}
.reco-slide-range {
  text-align: center;
  margin: 15px 0 5px 0;
  font-size: 15px;
  font-weight: 500;
  color: #666; /* total 기본 색 */
}

.reco-slide-range .now {
  color: #F9A825; /* 메인 포인트 색 */
  font-weight: 600;
}

.reco-slide-range .total {
  color: #999;
}
