/* ============================================================
   SAOR Header Styles - Custom Header CSS
   ============================================================ */

/* ---------- Base Header ---------- */
a:hover {
  text-decoration: none;
}

.furnish-header {
  background: #0066ff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.furnish-header .uk-navbar-container {
  background: #0066ff !important;
}

/* ---------- Logo ---------- */
.furnish-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.furnish-logo:hover {
  text-decoration: none;
}

.furnish-logo__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.furnish-logo__icon svg {
  width: 40px;
  height: 40px;
}

.furnish-logo__text {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

/* ---------- Navigation Links ---------- */
.furnish-nav .uk-navbar-nav {
  gap: 36px;
}

.furnish-nav .uk-navbar-nav > li > a {
  font-size: 15px;
  font-weight: 500;
  color: #ccc;
  text-transform: none;
  letter-spacing: 0;
  padding: 0;
  min-height: auto;
  position: relative;
  transition: color 0.25s ease;
}

.furnish-nav.uk-navbar-nav > li > a:hover {
  color: #fff;
}

/* Nav active state - 强力覆盖 UIkit 默认样式 */
.furnish-header .furnish-nav.uk-navbar-nav > li.uk-active > a {
  color: #fff !important;
  position: relative;
}




/* ---------- Right Icons ---------- */
.furnish-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.furnish-icon {
  color: #ccc;
  transition: color 0.25s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.furnish-icon:hover {
  color: #fff;
}

/* Search icon with border */
.furnish-icon--search {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
}

.furnish-icon--search:hover {
  border-color: rgba(255,255,255,0.5);
}

/* CTA Button */
.furnish-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #0066ff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 8px;
}

.furnish-cta-btn:hover {
  background: #f0f0f0;
  color: #0066ff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Cart Badge */
.furnish-cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #fff;
  color: #0066ff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Mobile Toggle ---------- */
.furnish-mobile-toggle {
  display: none;
}

/* ---------- Mobile Menu ---------- */
.furnish-mobile-menu {
  background: #1a1a1a;
  padding: 20px;
}

.furnish-mobile-menu .uk-nav > li > a {
  font-size: 16px;
  color: #ccc;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.furnish-mobile-menu .uk-nav > li > a:hover,
.furnish-mobile-menu .uk-nav > li.uk-active > a {
  color: #fff !important;
}

.furnish-mobile-menu .uk-nav > li.uk-active > a {
  background: rgba(0,102,255,0.3) !important;
}

.furnish-mobile-menu .uk-nav-sub > li > a {
  color: #999;
  font-size: 14px;
  padding: 8px 0 8px 16px;
}

.furnish-mobile-menu .uk-nav-sub > li > a:hover {
  color: #fff;
}

.furnish-mobile-icons {
  display: flex;
  gap: 24px;
  padding-top: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 959px) {
  .furnish-desktop-nav,
  .furnish-desktop-icons {
    display: none;
  }

  .furnish-mobile-toggle {
    display: flex;
  }
}

@media (min-width: 960px) {
  .furnish-mobile-only {
    display: none !important;
  }
}

/* ============================================================
   Product Showcase Styles (from model4)
   ============================================================ */

.furnish-product-showcase {
  padding: 120px 50px 50px 50px;
  background: #F6F8FC;
}

.furnish-product-showcase__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a2e1a;
  margin: 0 0 40px 0;
  text-align: left;
}

/* Left info panel */
.furnish-product-showcase__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Product Thumbnails */
.furnish-product-showcase__thumbs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
}

.furnish-product-showcase__thumbs-row:has(.furnish-product-showcase__thumb:nth-child(1):nth-last-child(1)) {
  grid-template-columns: 1fr;
}

.furnish-product-showcase__thumbs-row:has(.furnish-product-showcase__thumb:nth-child(2):nth-last-child(1)) {
  grid-template-columns: repeat(2, 1fr);
}

.furnish-product-showcase__thumbs-row:has(.furnish-product-showcase__thumb:nth-child(3):nth-last-child(1)) {
  grid-template-columns: repeat(3, 1fr);
}

.furnish-product-showcase__thumb {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.furnish-product-showcase__thumb:hover {
  border-color: #0066ff;
  transform: translateY(-2px);
}

.furnish-product-showcase__thumb.uk-active {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(46,125,50,0.15);
}

.furnish-product-showcase__thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Category tag */
.furnish-product-showcase__tag {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

/* Product name */
.furnish-product-showcase__name {
  font-size: 32px;
  font-weight: 700;
  color: #1a2e1a;
  margin: 0;
  line-height: 1.2;
}

/* Price and description */
.furnish-product-showcase__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.furnish-product-showcase__price {
  font-size: 28px;
  font-weight: 700;
  color: #1a2e1a;
}

.furnish-product-showcase__desc {
  font-size: 15px;
  color: #666;
}

/* Buy Now button */
.furnish-product-showcase__buy {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0066ff;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.furnish-product-showcase__buy:hover {
  background: #222;
  text-decoration: none;
  color: #FFF;
  transform: translateY(-2px);
}

.furnish-product-showcase__buy-arrow {
  width: 32px;
  height: 32px;
  background: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  transition: transform 0.3s ease;
}

.furnish-product-showcase__buy:hover .furnish-product-showcase__buy-arrow {
  transform: translateX(5px);
}

/* Navigation buttons */
.furnish-product-showcase__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.furnish-product-showcase__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0066ff;
  color: #FFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
}

.furnish-product-showcase__btn:hover {
  background: #1a2e1a;
  color: #fff;
}

/* Right: Main product image */
.furnish-product-showcase__main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.furnish-product-showcase__main .uk-switcher {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.furnish-product-showcase__main .uk-switcher > li {
  animation: uk-fade 0.3s ease;
}

.furnish-product-showcase__main a {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: right;
}

.furnish-product-showcase__main img {
  max-height: 500px;
  object-fit: contain;
  border-radius: 50px;

}

/* ============================================================
   Product Display Section Styles
   ============================================================ */

.furnish-product-display {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.furnish-product-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
  background-size: 100% 100%;
  pointer-events: none;
}

/* Header */
.furnish-product-display__header {
  text-align: center;
  margin-bottom: 50px;
}

.furnish-product-display__title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin: 0 0 24px 0;
}

/* Category Filter */
.furnish-product-display__filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.furnish-product-display__filter-btn {
  padding: 10px 24px;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: #fff;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.furnish-product-display__filter-btn:hover {
  border-color: #0066ff;
  color: #0066ff;
}

.furnish-product-display__filter-btn.active {
  background: #0066ff;
  color: #fff;
  border-color: #0066ff;
}

/* Cards Container */
.furnish-product-display__cards {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
  align-items: stretch;
}

.furnish-product-display__cards::-webkit-scrollbar {
  display: none;
}

/* Card */
.furnish-product-display__card {
  flex: 0 0 320px;
  min-width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
}

.furnish-product-display__card:hover {
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.12);
  transform: translateY(-6px);
}

.furnish-product-display__card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Card Content */
.furnish-product-display__card-content {
  padding: 28px 28px 20px;
  flex: 0 0 auto;
}

/* Card Header */
.furnish-product-display__card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.furnish-product-display__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.35;
  min-height: 54px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Decorative Icon */
.furnish-product-display__card-decor {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-left: 12px;
  opacity: 0.4;
  color: #0066ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Features */
.furnish-product-display__card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.furnish-product-display__card-features li {
  font-size: 13px;
  color: #555;
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.5;
}

.furnish-product-display__card-features li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #0066ff;
  border-radius: 50%;
}

/* Card Image */
.furnish-product-display__card-image {
  flex: 1;
  padding: 12px 24px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  min-height: 180px;
}

.furnish-product-display__card-image img {
  max-width: 140px;
  max-height: 140px;
  object-fit: contain;
}

/* Card Button */
.furnish-product-display__card-btn {
  position: absolute;
  bottom: 24px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: #0066ff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

.furnish-product-display__card-btn:hover {
  background: #0055cc;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
}

/* Category Tag */
.furnish-product-display__card-tag {
  position: absolute;
  bottom: 24px;
  right: 28px;
  padding: 6px 14px;
  background: #f0f4ff;
  color: #0066ff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 16px;
  z-index: 5;
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Product Image Link */
.furnish-product-display__card-img-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-align: center;
}

.furnish-product-display__card-img-link img {
  transition: transform 0.3s ease;
  max-width: 140px;
  max-height: 140px;
  object-fit: contain;
  border-radius: 50%;
}

.furnish-product-display__card:hover .furnish-product-display__card-img-link img {
  transform: scale(1.05);
}

/* Price Item */
.furnish-product-display__card-features li.price-item {
  color: #0066ff;
  font-weight: 600;
  font-size: 14px;
}

/* Drag Slider */
.furnish-product-display__slider {
  max-width: 100%;
  margin: 40px auto 0;
  padding: 0 20px;
  position: relative;
}

/* Decorative background */
.furnish-product-display__slider-decor {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 5%;
}

.furnish-product-display__slider-decor [uk-icon] {
  color: #0066ff;
  opacity: 0.5;
}

/* Main track */
.furnish-product-display__slider-track {
  position: relative;
  width: 100%;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  z-index: 1;
}

/* Track line (background) */
.furnish-product-display__slider-track::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: #d5dae2;
  border-radius: 1px;
}

/* Blue fill - hidden */
.furnish-product-display__slider-fill {
  display: none;
}

/* Thumb - circular button */
.furnish-product-display__slider-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #0066ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 10;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

.furnish-product-display__slider-thumb:hover {
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
  transform: translate(-50%, -50%) scale(1.05);
}

.furnish-product-display__slider-thumb:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Thumb icon */
.furnish-product-display__thumb-icon {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.furnish-product-display__footer {
  text-align: center;
  margin-top: 40px;
}

.furnish-product-display__more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0066ff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid #0066ff;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.furnish-product-display__more-link:hover {
  background: #0066ff;
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 959px) {
  .furnish-product-display {
    padding: 60px 0;
  }

  .furnish-product-display__title {
    font-size: 28px;
  }

  .furnish-product-display__card {
    flex: 0 0 280px;
    min-width: 280px;
  }

  .furnish-product-display__card-title {
    font-size: 18px;
    min-height: 48px;
  }

  .furnish-product-display__slider-thumb {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 639px) {
  .furnish-product-display {
    padding: 40px 0;
  }

  .furnish-product-display__title {
    font-size: 24px;
  }

  .furnish-product-display__card {
    flex: 0 0 260px;
    min-width: 260px;
  }

  .furnish-product-display__card-content {
    padding: 20px 20px 16px;
  }

  .furnish-product-display__card-title {
    font-size: 16px;
    min-height: 44px;
  }

  .furnish-product-display__card-features li {
    font-size: 12px;
    padding: 4px 0 4px 18px;
  }

  .furnish-product-display__card-image {
    min-height: 150px;
  }

  .furnish-product-display__card-image img {
    max-width: 110px;
    max-height: 110px;
  }

  .furnish-product-display__card-btn {
    width: 38px;
    height: 38px;
    bottom: 20px;
    left: 20px;
  }

  .furnish-product-display__card-tag {
    bottom: 20px;
    right: 20px;
    font-size: 11px;
    padding: 4px 10px;
  }

  .furnish-product-display__filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .furnish-product-display__slider {
    margin-top: 30px;
  }

  .furnish-product-display__slider-thumb {
    width: 30px;
    height: 30px;
  }
}

/* ============================================================
   Products Grid Section Styles
   ============================================================ */

.furnish-products {
  padding: 0 0 80px 0;
  background: #fff;
}

.furnish-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.furnish-products__card {
  background: #F6F8FC;
  border-radius: 16px;
  padding: 20px 20px 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.furnish-products__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.1);
}

.furnish-products__link {
  display: block;
  text-decoration: none;
  min-width: 0;
}

.furnish-products__link:hover {
  text-decoration: none;
}

.furnish-products__name {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.furnish-products__badge {
  display: inline-block;
  background: #e8ecf1;
  color: #666;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.furnish-products__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  margin-bottom: 16px;
}

.furnish-products__img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.furnish-products__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.furnish-products__price-link {
  text-decoration: none;
}

.furnish-products__price-link:hover {
  text-decoration: none;
}

.furnish-products__price {
  font-size: 20px;
  font-weight: 600;
  color: #0066ff;
  margin: 0;
}

.furnish-products__cart {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.furnish-products__cart:hover {
  background: #0066ff;
  color: #fff;
  text-decoration: none;
}

/* Explore More Button */
.furnish-products__more {
  text-align: center;
}

.furnish-products__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0066ff;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.furnish-products__btn:hover {
  background: #0055cc;
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
}

.furnish-products__btn-arrow {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  transition: transform 0.3s ease;
}

.furnish-products__btn:hover .furnish-products__btn-arrow {
  transform: rotate(45deg);
}

/* Responsive - Products Grid */
@media (max-width: 959px) {
  .furnish-products {
    padding: 60px 0;
  }
  
  .furnish-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  
  .furnish-products__img-wrap {
    height: 160px;
  }
}

@media (max-width: 639px) {
  .furnish-products__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  
  .furnish-products__img-wrap {
    height: 180px;
  }
}

/* ============================================================
   MR Travel Hero Section Styles
   ============================================================ */

.furnish-hero {
  background: #7c6af0;
  padding: 60px 0 0;
  border-radius: 0 0 40px 40px;
  margin: 0 20px;
  overflow: hidden;
}

.furnish-hero__content {
  padding: 40px 0;
}

.furnish-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  line-height: 1.1;
  margin: 0 0 16px 0;
  letter-spacing: -1px;
}

.furnish-hero__desc {
  font-size: 20px;
  color: #666;
  margin: 0 0 40px 0;
}

/* Booking Form */
.furnish-hero__booking {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 600px;
}

.furnish-hero__booking-label {
  background: #2d3748;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
}

.furnish-hero__booking-form {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.furnish-hero__booking-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.furnish-hero__booking-icon {
  color: #9ca3af;
}

.furnish-hero__booking-info {
  display: flex;
  flex-direction: column;
}

.furnish-hero__booking-title {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.furnish-hero__booking-value {
  font-size: 13px;
  color: #374151;
  font-weight: 500;
}

.furnish-hero__booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #7c6af0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.furnish-hero__booking-btn:hover {
  background: #6b5ce7;
  color: #fff;
  text-decoration: none;
}

/* Hero Image */
.furnish-hero__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.furnish-hero__image img {
  max-height: 700px;
  width: auto;
  object-fit: contain;
}

/* ---------- Hero Responsive ---------- */
@media (max-width: 1199px) {
  .furnish-hero__title {
    font-size: 48px;
  }
}

@media (max-width: 959px) {
  .furnish-hero {
    margin: 0 10px;
    border-radius: 0 0 24px 24px;
    padding: 30px 0 0;
  }

  .furnish-hero__title {
    font-size: 42px;
  }

  .furnish-hero__booking-form {
    flex-direction: column;
    align-items: stretch;
  }

  .furnish-hero__booking-btn {
    width: 100%;
    margin-top: 10px;
  }

  .furnish-hero__image {
    margin-top: 30px;
  }

  .furnish-hero__image img {
    max-height: 300px;
  }
}

@media (max-width: 639px) {
  .furnish-hero__title {
    font-size: 32px;
  }

  .furnish-hero__desc {
    font-size: 16px;
  }
}

/* ============================================================
   Booking Steps Section Styles
   ============================================================ */

.furnish-steps {
  padding: 80px 0;
  background: #fff;
}

.furnish-steps__header {
  margin-bottom: 60px;
}

.furnish-steps__label {
  font-size: 16px;
  font-weight: 400;
  color: #00a8e8;
  margin: 0 0 8px 0;
  font-style: italic;
  font-family: 'Georgia', serif;
}

.furnish-steps__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.furnish-steps__col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.furnish-steps__col--right {
  text-align: right;
}

.furnish-steps__item {
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.furnish-steps__item:hover {
  opacity: 0.8;
}

.furnish-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  font-size: 16px;
  font-weight: 700;
  color: #00a8e8;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.furnish-steps__num--blue {
  background: #00a8e8;
  border-color: #00a8e8;
  color: #fff;
}

.furnish-steps__name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.furnish-steps__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.furnish-steps__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #eee;
  overflow: hidden;
  display: inline-block;
}

.furnish-steps__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.furnish-steps__col--right .furnish-steps__image {
  margin-left: auto;
}

.furnish-steps__main {
  position: relative;
  padding: 20px;
}

.furnish-steps__main-image {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  aspect-ratio: 1 / 1;
}

.furnish-steps__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  border: 3px solid #ccc;
}

/* ---------- Steps Responsive ---------- */
@media (max-width: 959px) {
  .furnish-steps {
    padding: 60px 0;
  }

  .furnish-steps__title {
    font-size: 28px;
  }

  .furnish-steps__col {
    gap: 30px;
  }

  .furnish-steps__col--right {
    text-align: left;
  }

  .furnish-steps__col--right .furnish-steps__image {
    margin-left: 0;
  }

  .furnish-steps__main {
    margin: 40px 0;
  }
}

@media (max-width: 639px) {
  .furnish-steps {
    padding: 40px 0;
  }

  .furnish-steps__title {
    font-size: 24px;
  }

  .furnish-steps__num {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .furnish-steps__image {
    width: 60px;
    height: 60px;
  }
}

/* ============================================================
   Furnish Category Section Styles
   ============================================================ */

.furnish-category {
  padding: 0 0 80px 0;
  background: #fff;
}

.furnish-category__title {
  font-size: 42px;
  font-weight: 700;
  color: #1a2e1a;
  text-align: center;
  margin: 0 0 50px 0;
  letter-spacing: -0.5px;
}

.furnish-category__grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.furnish-category__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 20px 16px;
  border-radius: 24px;
  transition: all 0.3s ease;
  min-width: 120px;
}

.furnish-category__item:hover {
  text-decoration: none;
  background: #f5f5f5;
}

.furnish-category__item.active,
.furnish-category__item:hover.active {
  background: #a8d5a2;
}

.furnish-category__thumb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: #f8f8f8;
  transition: all 0.3s ease;
}

.furnish-category__item.active .furnish-category__thumb,
.furnish-category__item:hover .furnish-category__thumb {
  background: transparent;
}

.furnish-category__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.furnish-category__name {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  transition: color 0.3s ease;
}

.furnish-category__item.active .furnish-category__name,
.furnish-category__item:hover .furnish-category__name {
  color: #1a2e1a;
}

/* ---------- Category Responsive ---------- */
@media (max-width: 959px) {
  .furnish-category {
    padding: 60px 0;
  }

  .furnish-category__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .furnish-category__grid {
    gap: 16px;
  }

  .furnish-category__item {
    min-width: 100px;
    padding: 16px 12px;
  }

  .furnish-category__thumb {
    width: 64px;
    height: 64px;
  }

  .furnish-category__name {
    font-size: 14px;
  }
}

@media (max-width: 639px) {
  .furnish-category__title {
    font-size: 30px;
  }

  .furnish-category__grid {
    gap: 12px;
  }

  .furnish-category__item {
    min-width: 80px;
    padding: 12px 8px;
    border-radius: 16px;
  }

  .furnish-category__thumb {
    width: 56px;
    height: 56px;
  }

  .furnish-category__name {
    font-size: 13px;
  }
}

/* ============================================================
   Furnish Products Grid Section Styles
   ============================================================ */

.furnish-products {
  padding: 0 0 80px 0;
  background: #fff;
}

.furnish-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.furnish-products__link {
  display: block;
  text-decoration: none;
}

.furnish-products__link:hover {
  text-decoration: none;
}

.furnish-products__badge {
  display: inline-block;
  background: #d5d5d5;
  color: #555;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.furnish-products__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  margin-bottom: 16px;
}

.furnish-products__img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.furnish-products__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.furnish-products__price-link {
  text-decoration: none;
}

.furnish-products__price-link:hover {
  text-decoration: none;
}

.furnish-products__price {
  font-size: 20px;
  font-weight: 600;
  color: #1a2e1a;
  margin: 0;
}

.furnish-products__cart {
  width: 40px;
  height: 40px;
  background: #0066ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.furnish-products__cart:hover {
  background: #1a2e1a;
  color: #fff;
  text-decoration: none;
}

/* Explore More Button */
.furnish-products__more {
  text-align: center;
}

.furnish-products__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #a8d5a2;
  color: #1a2e1a;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.furnish-products__btn:hover {
  background: #98c992;
  text-decoration: none;
  color: #1a2e1a;
  transform: translateY(-2px);
}

.furnish-products__btn-arrow {
  width: 32px;
  height: 32px;
  background: #1a2e1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease;
}

.furnish-products__btn:hover .furnish-products__btn-arrow {
  transform: rotate(45deg);
}

/* ---------- Products Responsive ---------- */
@media (max-width: 959px) {
  .furnish-products {
    padding: 60px 0;
  }

  .furnish-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .furnish-products__img-wrap {
    height: 160px;
  }
}

@media (max-width: 639px) {
  .furnish-products__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .furnish-products__img-wrap {
    height: 180px;
  }
}

/* ============================================================
   Furnish Showcase Section Styles
   ============================================================ */

.furnish-showcase {
  padding: 0 0 80px 0;
}

/* Header */
.furnish-showcase__header {
  margin-bottom: 60px;
}

.furnish-showcase__title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  letter-spacing: -1px;
}

.furnish-showcase__subtitle {
  font-size: 16px;
  color: #777;
  margin: 0;
}

/* Featured Product */
.furnish-showcase__featured {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.furnish-showcase__featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.furnish-showcase__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.furnish-showcase__featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: #fff;
}

.furnish-showcase__category {
  font-size: 13px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #222;
  padding: 4px 12px;
}

.furnish-showcase__featured-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 16px 0;
  line-height: 1.3;
}

.furnish-showcase__featured-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.furnish-showcase__featured-desc p {
  margin: 0 0 16px 0;
}

/* Sub Images */
.furnish-showcase__sub-images {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.furnish-showcase__sub-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.furnish-showcase__sub-img:hover {
  border-color: #c8e600;
  transform: scale(1.1);
}

.furnish-showcase__sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.furnish-showcase__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.furnish-showcase__read-more:hover {
  background: #c8e600;
  color: #1a1a1a;
  text-decoration: none;
}

/* Product List */
.furnish-showcase__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.furnish-showcase__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.furnish-showcase__item-image {
  width: 120px;
  height: 80px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.furnish-showcase__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.furnish-showcase__item-content {
  flex: 1;
}

.furnish-showcase__item-category {
  font-size: 12px;
  color: #34a9b9;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.furnish-showcase__item-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}

/* ---------- Showcase Responsive ---------- */
@media (max-width: 959px) {
  .furnish-showcase {
    padding: 60px 0;
  }

  .furnish-showcase__title {
    font-size: 36px;
  }

  .furnish-showcase__featured {
    min-height: 400px;
    margin-bottom: 40px;
  }

  .furnish-showcase__featured-content {
    padding: 30px;
  }

  .furnish-showcase__featured-title {
    font-size: 22px;
  }
}

@media (max-width: 639px) {
  .furnish-showcase__title {
    font-size: 28px;
  }

  .furnish-showcase__featured {
    min-height: 350px;
  }

  .furnish-showcase__featured-content {
    padding: 24px;
  }

  .furnish-showcase__item-image {
    width: 100px;
    height: 70px;
  }

  .furnish-showcase__item-title {
    font-size: 14px;
  }
}

/* ============================================================
   Beauty Hero Banner Styles (首页专用)
   ============================================================ */

/* ---------- Beauty Hero Base ---------- */
.furnish-hero--seavolt {
  background: #fff;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  margin-top: 0;
}

/* ---------- Left Side - Image ---------- */
.furnish-hero--seavolt .furnish-hero__left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.furnish-hero--seavolt .furnish-hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.furnish-hero--seavolt .furnish-hero__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  border-radius: 0;
  aspect-ratio: auto;
  border: none;
}

/* ---------- Right Side - Content ---------- */
.furnish-hero--seavolt .furnish-hero__right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding-left: 40px;
}

/* Title */
.furnish-hero--seavolt .furnish-hero__title {
  margin: 0 0 30px 0;
}

.furnish-hero--seavolt .furnish-hero__title span {
  display: block;
  font-size: 64px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -1px;
}

.furnish-hero--seavolt .furnish-hero__title--accent {
  color: #e53935;
}

/* Description */
.furnish-hero--seavolt .furnish-hero__desc {
  margin: 0 0 40px 0;
}

.furnish-hero--seavolt .furnish-hero__desc p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 8px 0;
}

.furnish-hero--seavolt .furnish-hero__desc p:last-child {
  margin-bottom: 0;
}

/* Buttons */
.furnish-hero--seavolt .furnish-hero__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.furnish-hero--seavolt .furnish-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.furnish-hero--seavolt .furnish-hero__btn--primary {
  background: #222;
  color: #fff;
  box-shadow: 0 4px 20px rgba(229, 57, 53, 0.4);
}

.furnish-hero--seavolt .furnish-hero__btn--primary:hover {
  background: #555;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(229, 57, 53, 0.5);
}

.furnish-hero--seavolt .furnish-hero__btn--secondary {
  background: #fff;
  color: #333;
  border: 1px solid #e0e0e0;
}

.furnish-hero--seavolt .furnish-hero__btn--secondary:hover {
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-color: #bdbdbd;
}

/* ---------- Beauty Hero Responsive ---------- */
@media (max-width: 1199px) {
  .furnish-hero--seavolt .furnish-hero__title span {
    font-size: 52px;
  }
}

@media (max-width: 959px) {
  .furnish-hero--seavolt {
    padding: 60px 0;
  }

  .furnish-hero--seavolt .furnish-hero__left {
    min-height: auto;
    margin-bottom: 30px;
  }

  .furnish-hero--seavolt .furnish-hero__right {
    min-height: auto;
    padding-left: 0;
    text-align: center;
  }

  .furnish-hero--seavolt .furnish-hero__title span {
    font-size: 42px;
  }

  .furnish-hero--seavolt .furnish-hero__buttons {
    justify-content: center;
  }

  .furnish-hero--seavolt .furnish-hero__image-wrap {
    max-width: 400px;
  }
}

@media (max-width: 639px) {
  .furnish-hero--seavolt {
    padding: 40px 0;
  }

  .furnish-hero--seavolt .furnish-hero__title span {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .furnish-hero--seavolt .furnish-hero__desc p {
    font-size: 14px;
  }

  .furnish-hero--seavolt .furnish-hero__buttons {
    flex-direction: column;
  }

  .furnish-hero--seavolt .furnish-hero__btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
  }
}



/* ============================================================
   Temp placeholder - will be removed
   ============================================================ */

.furnish-featured__title {
  margin: 0 0 8px 0;
}

.furnish-featured__title span {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  letter-spacing: -1px;
}

.furnish-featured__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Navigation Arrows in Header */
.furnish-featured__nav-arrows {
  display: flex;
  gap: 12px;
}

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

.furnish-featured__arrow:hover {
  background: #7c6af0;
  color: #fff;
  border-color: #7c6af0;
}

.furnish-featured__arrow--prev {
  background: #7c6af0;
  color: #fff;
  border-color: #7c6af0;
}

.furnish-featured__arrow--prev:hover {
  background: #6b5ce7;
}

/* Product Card */
.furnish-featured__card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.furnish-featured__card:hover {
  transform: translateY(-4px);
}

/* Product Image */
.furnish-featured__image-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
  border-radius: 16px;
}

.furnish-featured__image-wrap > a {
  display: block;
  width: 100%;
  height: 100%;
}

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

.furnish-featured__card:hover .furnish-featured__image {
  transform: scale(1.05);
}

/* Overlay for last item */
.furnish-featured__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 16px;
  pointer-events: auto;
}

.furnish-featured__overlay-content h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.furnish-featured__overlay-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin: 0;
}

.furnish-featured__overlay-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  align-self: flex-end;
}

.furnish-featured__overlay-btn:hover {
  background: #7c6af0;
  color: #fff;
  text-decoration: none;
}

/* Ensure overlay doesn't block slider */
.furnish-featured .uk-slider-items > li {
  position: relative;
}

/* Product Content */
.furnish-featured__content {
  padding: 16px 0 0 0;
}

.furnish-featured__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.furnish-featured__num {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.furnish-featured__line {
  flex: 1;
  height: 1px;
  background: #e0e0e0;
  max-width: 60px;
}

.furnish-featured__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}

.furnish-featured__dot {
  width: 6px;
  height: 6px;
  background: #f5a623;
  border-radius: 50%;
}

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

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

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

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

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

  .furnish-featured__title span {
    font-size: 28px;
  }

  .furnish-featured__image-wrap {
    height: 220px;
  }
}

@media (max-width: 639px) {
  .furnish-featured__title span {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .furnish-featured__image-wrap {
    height: 200px;
  }

  .furnish-featured__nav-arrows {
    display: none;
  }
}

/* ---------- Categories Grid ---------- */
.furnish-categories {
  padding: 0;
}

.furnish-categories__item {
  position: relative;
  display: block;
  height: 400px;
  overflow: hidden;
  text-decoration: none;
}

.furnish-categories__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.furnish-categories__item:hover .furnish-categories__img {
  transform: scale(1.05);
}

.furnish-categories__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.furnish-categories__item:hover .furnish-categories__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.furnish-categories__content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  color: #fff;
}

.furnish-categories__name {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #fff;
}

.furnish-categories__count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 12px 0;
}

.furnish-categories__link {
  font-size: 13px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Destination Gallery ---------- */
.furnish-gallery {
  padding: 0 0 80px 0;
  background: #fff;
}

/* Gallery Header */
.furnish-gallery__header {
  margin-bottom: 40px;
}

.furnish-gallery__title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.furnish-gallery__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 8px 0;
  max-width: 500px;
}

.furnish-gallery__subtitle {
  font-size: 14px;
  color: #111;
  font-weight: 500;
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #f5a623;
}

/* View All Button */
.furnish-gallery__view-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border: 1.5px solid #e0e0e0;
  border-radius: 50px;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.furnish-gallery__view-btn:hover {
  border-color: #111;
  background: #111;
  color: #fff;
  text-decoration: none;
}

/* Gallery Grid */
.furnish-gallery__item {
  position: relative;
  display: block;
  height: 360px;
  overflow: hidden;
  text-decoration: none;
  border-radius: 16px;
}

.furnish-gallery__item--large {
  height: 360px;
}

.furnish-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.furnish-gallery__item:hover .furnish-gallery__img {
  transform: scale(1.05);
}

.furnish-gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
  transition: background 0.3s ease;
  border-radius: 16px;
}

.furnish-gallery__item:hover .furnish-gallery__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.furnish-gallery__content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: #fff;
}

.furnish-gallery__item--large .furnish-gallery__content {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
  text-align: center;
}

.furnish-gallery__count {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.furnish-gallery__name {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #fff;
}

.furnish-gallery__properties {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ---------- Promo Section ---------- */
.furnish-promo {
  padding: 0 0 40px 0;
}

.furnish-promo__wrap {
  position: relative;
  background: url('../img/promo_bg.jpg') center/cover no-repeat;
  border-radius: 16px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 60px;
}

.furnish-promo__wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

/* Left Card */
.furnish-promo__card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.furnish-promo__card-label {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 500;
}

.furnish-promo__card-img {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.furnish-promo__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.furnish-promo__card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.furnish-promo__card-btn:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

/* Right Content */
.furnish-promo__content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  text-align: right;
}

.furnish-promo__title {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.furnish-promo__title span {
  display: block;
}

/* Arrows */
.furnish-promo__arrows {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.furnish-promo__arrow {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: none;
  background: #fff;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.furnish-promo__arrow--dark {
  background: #1a3a2f;
  color: #fff;
}

.furnish-promo__arrow:hover {
  transform: scale(1.05);
}

/* ---------- Promo Responsive ---------- */
@media (max-width: 959px) {
  .furnish-promo__wrap {
    flex-direction: column;
    padding: 40px;
    gap: 40px;
  }

  .furnish-promo__content {
    margin-left: 0;
    text-align: center;
  }

  .furnish-promo__title {
    font-size: 42px;
  }

  .furnish-promo__arrows {
    justify-content: center;
  }
}

@media (max-width: 639px) {
  .furnish-promo__title {
    font-size: 32px;
  }

  .furnish-promo__card {
    width: 100%;
    max-width: 320px;
  }
}

/* ---------- Testimonials Section ---------- */
.furnish-testimonials {
  padding: 0 0 80px 0;
  background: #fff;
}

/* Header */
.furnish-testimonials__header {
  margin-bottom: 50px;
}

.furnish-testimonials__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a3e;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.furnish-testimonials__subtitle {
  font-size: 16px;
  color: #888;
  margin: 0;
}

/* Orbit Layout */
.furnish-testimonials__orbit-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  min-height: 400px;
  gap: 0;
}

.furnish-testimonials__side {
  width: 25%;
  min-height: 400px;
  position: relative;
  flex-shrink: 0;
}

/* Left side positions - asymmetric */
.furnish-testimonials__side--left .pos-left-1 {
  position: absolute;
  top: 5px;
  left: 5px;
  transition: all 0.5s ease;
}

.furnish-testimonials__side--left .pos-left-2 {
  position: absolute;
  top: 70px;
  left: 70%;
  transform: translateX(-50%);
  transition: all 0.5s ease;
}

.furnish-testimonials__side--left .pos-left-3 {
  position: absolute;
  top: 180px;
  left: 15%;
  transition: all 0.5s ease;
}

/* Right side positions - different from left */
.furnish-testimonials__side--right .pos-right-1 {
  position: absolute;
  top: 30px;
  right: 5px;
  transition: all 0.5s ease;
}

.furnish-testimonials__side--right .pos-right-2 {
  position: absolute;
  top: 110px;
  right: 85%;
  transform: translateX(50%);
  transition: all 0.5s ease;
}

.furnish-testimonials__side--right .pos-right-3 {
  position: absolute;
  top: 240px;
  right: 30%;
  transition: all 0.5s ease;
}

.furnish-testimonials__center {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  flex-shrink: 0;
}

.furnish-testimonials__center-item {
  transition: all 0.5s ease;
}

.furnish-testimonials__orbit-item {
  display: inline-block;
  text-decoration: none;
  transition: all 0.5s ease;
}

.furnish-testimonials__orbit-item--center .furnish-testimonials__orbit-avatar {
  width: 360px;
  height: 360px;
  border: solid 5px #7c6bff;
  animation: centerPulse 0.5s ease;
}

@keyframes centerPulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Left side different sizes - match image exactly */
.furnish-testimonials__side--left .pos-left-1 .furnish-testimonials__orbit-avatar {
  width: 100px;
  height: 100px;
}

.furnish-testimonials__side--left .pos-left-2 .furnish-testimonials__orbit-avatar {
  width: 150px;
  height: 150px;
}

.furnish-testimonials__side--left .pos-left-3 .furnish-testimonials__orbit-avatar {
  width: 65px;
  height: 65px;
}

/* Right side different sizes - match image exactly */
.furnish-testimonials__side--right .pos-right-1 .furnish-testimonials__orbit-avatar {
  width: 100px;
  height: 100px;
}

.furnish-testimonials__side--right .pos-right-2 .furnish-testimonials__orbit-avatar {
  width: 130px;
  height: 130px;
}

.furnish-testimonials__side--right .pos-right-3 .furnish-testimonials__orbit-avatar {
  width: 85px;
  height: 85px;
}

.furnish-testimonials__orbit-avatar {
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e8e8e8;
  transition: all 0.5s ease;
  padding: 4px;
  background: #fff;
}

.furnish-testimonials__orbit-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Info */
.furnish-testimonials__info {
  text-align: center;
  margin-top: 20px;
}

.furnish-testimonials__name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a3e;
  margin: 0 0 4px 0;
}

.furnish-testimonials__role {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.furnish-testimonials__content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Navigation */
.furnish-testimonials__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  position: relative;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  gap: 60px;
}

.furnish-testimonials__nav-text {
  flex: 1;
  text-align: center;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 400px;
}

.furnish-testimonials__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
  flex-shrink: 0;
}

.furnish-testimonials__arrow:hover {
  border-color: #7c6bff;
  background: #7c6bff;
  color: #fff;
  text-decoration: none;
}

.furnish-testimonials__arrow:focus {
  outline: none;
}

/* ============================================================
   Footer Styles
   ============================================================ */

.am-footer {
  background:#0a1929;
  color: rgba(255, 255, 255, 0.7);
}

.am-footer hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}

/* ---------- Top Info Bar ---------- */
.am-footer-top {
  background: #111d32;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.am-footer-top__col {
  padding: 15px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.am-footer-top__col:last-child {
  border-right: none;
}

.am-footer-top__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.am-footer-top__item>span[uk-icon] {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.am-footer-top__label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 4px 0;
  letter-spacing: 0.5px;
}

.am-footer-top__value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.am-footer-top__link {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.am-footer-top__link:hover {
  color: #00a8e8;
  text-decoration: none;
}

.am-footer-top__social {
  display: flex;
  gap: 12px;
}

.am-footer-top__social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s ease;
}

.am-footer-top__social a:hover {
  color: #fff;
}

.am-footer-top__payments {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.am-footer-top__payments img {
  height: 60px;
  width: auto;
  opacity: 0.9;
}

/* ---------- Main Footer ---------- */
.am-footer-main {
  padding: 60px 0 40px;
}

.am-footer-logo {
  margin-bottom: 50px;
}

.am-footer-logo .furnish-logo__text {
  color: #fff;
  font-size: 32px;
}

.am-footer-title {
  font-size: 12px;
  font-weight: 600;
  color: #4a9eff;
  margin: 0 0 20px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.am-footer-title--newsletter {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
}

.am-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.am-footer-list li {
  margin-bottom: 10px;
}

.am-footer-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.am-footer-list a:hover {
  color: #fff;
  text-decoration: none;
}

.am-footer-desc {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0 0 16px 0;
}

/* ---------- Newsletter ---------- */
.am-footer-newsletter {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.am-footer-newsletter__input {
  flex: 1;
  background: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  border-radius: 4px 0 0 4px;
}

.am-footer-newsletter__input::placeholder {
  color: #999;
}

.am-footer-newsletter__input:focus {
  outline: none;
}

.am-footer-newsletter__btn {
  background: #00a8e8;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: background 0.25s ease;
  white-space: nowrap;
}

.am-footer-newsletter__btn:hover {
  background: #0095d0;
}

/* ---------- Payments ---------- */
.am-footer-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.am-footer-payments img {
  height: 24px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.25s ease;
}

.am-footer-payments img:hover {
  opacity: 1;
}

/* ---------- Bottom Bar ---------- */
.am-footer-bottom {
  background: #07111f;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.am-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.am-footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.am-footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.am-footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}

.am-footer-legal a:hover {
  color: #fff;
}

.am-footer-brand-text {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

/* ---------- Footer Responsive ---------- */
@media (max-width: 959px) {
  .am-footer-top__col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
  }

  .am-footer-top__col:last-child {
    border-bottom: none;
  }

  .am-footer-main {
    padding: 40px 0 30px;
  }

  .am-footer-logo {
    margin-bottom: 30px;
  }

  .am-footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 639px) {
  .am-footer-top {
    padding: 20px 0;
  }

  .am-footer-main {
    padding: 30px 0 20px;
  }

  .am-footer-title {
    margin-bottom: 12px;
  }

  .am-footer-list li {
    margin-bottom: 6px;
  }
}


