/* ============================================================
   Featured Slider Section
   ============================================================ */

.furnish-featured-slider {
  padding: 80px 0;
  background: #f5f7f9;
}

/* Product Card */
.furnish-featured-slider__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.furnish-featured-slider__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Product Image */
.furnish-featured-slider__image-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: #f8f8f8;
}

.furnish-featured-slider__image-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.furnish-featured-slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.furnish-featured-slider__card:hover .furnish-featured-slider__image {
  transform: scale(1.05);
}

/* Product Content */
.furnish-featured-slider__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.furnish-featured-slider__location {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.furnish-featured-slider__name {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.furnish-featured-slider__specs {
  font-size: 12px;
  color: #999;
  margin: 0 0 16px 0;
}

/* Footer */
.furnish-featured-slider__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 16px;
  margin-top: auto;
}

.furnish-featured-slider__price {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

/* Button */
.furnish-featured-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 16px;
  height: 36px;
  background: #222;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.furnish-featured-slider__btn:hover {
  background: #555;
  color: #fff;
  text-decoration: none;
}

/* ---------- Slider Styles ---------- */
.furnish-featured-slider__slider {
  position: relative;
}

.furnish-featured-slider .uk-slider-container {
  overflow: hidden;
}

.furnish-featured-slider .uk-slider-items {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.furnish-featured-slider .uk-slider-items>li {
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}

/* Dot Navigation */
.furnish-featured-slider .uk-dotnav {
  z-index: 10;
  position: static;
}

.furnish-featured-slider .uk-dotnav>* {
  padding-left: 4px;
  padding-right: 4px;
}

.furnish-featured-slider .uk-dotnav>*>* {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  border-radius: 50%;
  display: block;
}

.furnish-featured-slider .uk-dotnav>.uk-active>* {
  background: #222;
  border-color: #555;
}

.furnish-featured-slider .uk-dotnav>*> :hover,
.furnish-featured-slider .uk-dotnav>*> :focus {
  background: rgba(0, 102, 255, 0.5);
  border-color: rgba(0, 102, 255, 0.5);
}

/* Navigation Controls */
.furnish-featured-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.furnish-featured-slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  border: 1px solid #eee;
  text-decoration: none;
  transition: all 0.25s ease;
}

.furnish-featured-slider__arrow:hover {
  background: #222;
  color: #fff;
  border-color: #555;
  text-decoration: none;
}

/* ---------- Featured Slider Responsive ---------- */
@media (max-width: 959px) {
  .furnish-featured-slider {
    padding: 60px 0;
  }
}

@media (max-width: 639px) {
  .furnish-featured-slider__image-wrap {
    height: 200px;
  }
}
