/* ============================================================
   SAOR Header Styles - Custom Header CSS
   ============================================================ */

/* ---------- Base Header ---------- */
a:hover {
  text-decoration: none;
}

.furnish-header {
  background: transparent;
  position: sticky;
  top: 50px;
  z-index: 1000;
}

.furnish-header .uk-navbar-container {
  background: transparent !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: #c8e600;
}

/* Nav active state - 强力覆盖 UIkit 默认样式 */
.furnish-header .furnish-nav.uk-navbar-nav > li.uk-active > a {
  color: #c8e600 !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: #c8e600;
}

/* 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(200,230,0,0.5);
}

/* CTA Button */
.furnish-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #c8e600;
  color: #1a1a1a;
  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: #d4f20a;
  color: #1a1a1a;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Cart Badge */
.furnish-cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #c8e600;
  color: #1a1a1a;
  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: #c8e600 !important;
}

.furnish-mobile-menu .uk-nav > li.uk-active > a {
  background: rgba(200,230,0,0.15) !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: #c8e600;
}

.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;
  }
}

/* ============================================================
   SAOR Hero Section Styles
   ============================================================ */

/* ---------- Hero Base ---------- */
.furnish-hero {
  background: #111;
  padding: 240px 0 120px;
  overflow: hidden;
  position: relative;
  margin-top: -70px;
}

/* Background decorations */
.furnish-hero__bg-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  overflow: hidden;
}

.furnish-hero__bg-deco svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
}



/* Badge */
.furnish-hero__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  padding: 4px;
}

.furnish-hero__badge::before,
.furnish-hero__badge::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #c8e600;
  z-index: 2;
}

.furnish-hero__badge::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.furnish-hero__badge::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.furnish-hero__badge-text {
  font-size: 14px;
  font-weight: 500;
  color: #c8e600;
  padding: 8px 20px;
  border: 1px solid rgba(200,230,0,0.3);
  letter-spacing: 1px;
}

/* Title */
.furnish-hero__title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
  word-break: break-word;
}

/* Subtitle */
.furnish-hero__subtitle {
  font-size: 16px;
  color: #888;
  line-height: 1.7;
  margin: 0 0 40px 0;
  max-width: 420px;
}

/* CTA Button */
.furnish-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #c8e600;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.furnish-hero__btn:hover {
  background: #d4f20a;
  text-decoration: none;
  color: #111;
  transform: translateY(-2px);
}

/* ---------- Right Image ---------- */
.furnish-hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.furnish-hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  overflow: visible;
}

.furnish-hero__image {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 10px solid rgba(200,230,0,0.3);
  aspect-ratio: 1 / 1;
}

/* Decorative circle behind image */
.furnish-hero__deco-circle {
  position: absolute;
  top: 0;
  right: 600px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(200,230,0,0.3);
  border-radius: 50%;
  z-index: -1;
}

.furnish-hero__deco-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 1px solid rgba(200,230,0,0.2);
  border-radius: 50%;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .furnish-hero__title {
    font-size: 48px;
  }
}

@media (max-width: 959px) {
  .furnish-hero {
    padding: 100px 0 60px;
  }
  
  .furnish-hero__title {
    font-size: 36px;
  }
  
  .furnish-hero__left {
    padding-right: 0;
    text-align: center;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .furnish-hero__subtitle {
    max-width: 100%;
  }
  
  .furnish-hero__image-wrap {
    max-width: 320px;
  }
}

@media (max-width: 639px) {
  .furnish-hero {
    padding: 80px 0 40px;
  }
  
  .furnish-hero__title {
    font-size: 28px;
  }
  
  .furnish-hero__image-wrap {
    max-width: 260px;
  }
  
  .furnish-hero__deco-circle {
    width: 70px;
    height: 70px;
    right: 5px;
    top: -5px;
  }
  
  .furnish-hero__deco-circle::before {
    width: 45px;
    height: 45px;
  }
}

/* ---------- Slider Dots ---------- */
.uk-dotnav > * > * {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
}

.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
  background: rgba(200,230,0,0.6);
}

.uk-dotnav > .uk-active > * {
  background: #c8e600;
  transform: scale(1.2);
}

/* Hide slider navigation arrows */
.uk-slider .uk-slidenav,
.uk-slider .uk-visible-toggle .uk-slidenav,
.uk-position-relative .uk-slidenav {
  display: none !important;
}

/* ============================================================
   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__card {
  background: #e8e8e8;
  border-radius: 16px;
  padding: 20px 20px 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.furnish-products__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.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: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2e1a;
  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);
}

/* ============================================================
   Furnish About Section Styles
   ============================================================ */

.furnish-about {
  padding: 100px 0;
  background: #fff;
}

/* Section Label */
.furnish-about__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.furnish-about__label-line {
  width: 80px;
  height: 2px;
  background: #c8e600;
}

.furnish-about__label-dots {
  display: flex;
  gap: 4px;
}

.furnish-about__label-dots span {
  width: 8px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
}

.furnish-about__label-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 2px;
}

/* Media */
.furnish-about__media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.furnish-about__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.furnish-about__media-large {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.furnish-about__media-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.furnish-about__content {
  padding: 0 0 0 40px;
}

.furnish-about__title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
}

.furnish-about__text {
  font-size: 15px;
  color: #777;
  line-height: 1.8;
  margin: 0;
}

/* Features List */
.furnish-about__features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.furnish-about__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.furnish-about__check {
  color: #c8e600;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Circle Button */
.furnish-about__circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  width: 120px;
  height: 120px;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.furnish-about__circle-btn:hover {
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
}

/* Stats */
.furnish-about__stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 0;
}

.furnish-about__stat-item {
  text-align: left;
}

.furnish-about__stat-icon {
  color: #c8e600;
  margin-bottom: 12px;
}

.furnish-about__stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 8px;
}

.furnish-about__stat-label {
  font-size: 14px;
  color: #777;
}

.furnish-about__stat-divider {
  width: 100%;
  height: 1px;
  background: #eee;
}

/* ---------- About Responsive ---------- */
@media (max-width: 959px) {
  .furnish-about {
    padding: 60px 0;
  }
  
  .furnish-about__title {
    font-size: 36px;
    text-align: center;
  }
  
  .furnish-about__content {
    padding: 0;
    text-align: center;
    margin-top: 30px;
  }
  
  .furnish-about__features {
    max-width: 400px;
    margin: 0 auto 30px;
  }
  
  .furnish-about__circle-btn {
    margin: 0 auto;
  }
  
  .furnish-about__stats {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
  }
  
  .furnish-about__stat-divider {
    display: none;
  }
}

@media (max-width: 639px) {
  .furnish-about__title {
    font-size: 28px;
  }
  
  .furnish-about__stats {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .furnish-about__stat-item {
    text-align: center;
  }
}

/* ============================================================
   Furnish Services Section Styles
   ============================================================ */

.furnish-services {
  padding: 100px 0;
  background: #f8f8f8;
}

/* Section Label */
.furnish-services__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.furnish-services__label-line {
  width: 60px;
  height: 2px;
  background: #c8e600;
}

.furnish-services__label-dots {
  display: flex;
  gap: 4px;
}

.furnish-services__label-dots span {
  width: 8px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
}

.furnish-services__label-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 2px;
}

/* Title */
.furnish-services__title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.2;
  margin: 0 0 60px 0;
  letter-spacing: -0.5px;
}

/* Categories */
.furnish-services__categories {
  border-right: 1px solid #e0e0e0;
  padding-right: 30px;
}

.furnish-services__category-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.furnish-services__category-item:last-child {
  border-bottom: none;
}

.furnish-services__category-item:hover,
.furnish-services__category-item.active {
  color: #c8e600;
}

.furnish-services__category-item.active .furnish-services__category-name {
  color: #c8e600;
}

.furnish-services__category-icon {
  color: #c8e600;
}

.furnish-services__category-name {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

/* Product Display */
.furnish-services__product-display {
  position: relative;
  padding-left: 30px;
}

.furnish-services__product-panel {
  display: none;
}

.furnish-services__product-panel.active {
  display: block;
}

.furnish-services__product-images {
  margin-bottom: 30px;
}

.furnish-services__product-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.furnish-services__product-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.furnish-services__product-desc {
  font-size: 15px;
  color: #777;
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

.furnish-services__read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  width: 100px;
  height: 100px;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.furnish-services__read-more:hover {
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
}

/* ---------- Services Responsive ---------- */
@media (max-width: 959px) {
  .furnish-services {
    padding: 60px 0;
  }
  
  .furnish-services__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .furnish-services__categories {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding-right: 0;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  
  .furnish-services__product-display {
    padding-left: 0;
  }
  
  .furnish-services__product-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .furnish-services__read-more {
    margin: 0 auto;
  }
}

@media (max-width: 639px) {
  .furnish-services__title {
    font-size: 26px;
  }
  
  .furnish-services__category-name {
    font-size: 18px;
  }
}



/* ============================================================
   Furnish Gallery Section Styles
   ============================================================ */

.furnish-gallery {
  padding: 80px 0;
  background: #fff;
}

/* Header */
.furnish-gallery__header {
  margin-bottom: 50px;
  gap: 20px;
}

.furnish-gallery__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.furnish-gallery__label-line {
  display: block;
  width: 60px;
  height: 2px;
  background: #c8e600;
}

.furnish-gallery__label-dots {
  display: block;
  width: 8px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
  position: relative;
}

.furnish-gallery__label-dots::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
}

.furnish-gallery__label-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 16px;
}

.furnish-gallery__title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

/* View All Button */
.furnish-gallery__view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  padding: 0 24px;
  border-radius: 50px;
  border: 2px solid #c8e600;
  color: #c8e600;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.furnish-gallery__view-all:hover {
  background: #c8e600;
  color: #111;
  text-decoration: none;
}

/* Gallery Item */
.furnish-gallery__item {
  position: relative;
}

.furnish-gallery__image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 2px solid #e0e0e0;
}

.furnish-gallery__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.furnish-gallery__item:hover .furnish-gallery__image img {
  transform: scale(1.05);
}

/* Gallery Info */
.furnish-gallery__info {
  gap: 16px;
}

.furnish-gallery__category {
  font-size: 12px;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.furnish-gallery__name {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

/* Arrow Button */
.furnish-gallery__arrow {
  width: 40px;
  height: 40px;
  background: #c8e600;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.furnish-gallery__arrow:hover {
  background: #fff;
  color: #111;
  text-decoration: none;
}

/* ---------- Gallery Responsive ---------- */
@media (max-width: 959px) {
  .furnish-gallery {
    padding: 60px 0;
  }
  
  .furnish-gallery__title {
    font-size: 32px;
  }
  
  .furnish-gallery__image {
    border: 2px solid #e0e0e0;
  }

  .furnish-gallery__image img {
    height: 300px;
  }
  
  .furnish-gallery__view-all {
    height: 44px;
    padding: 0 20px;
    font-size: 13px;
  }
}

@media (max-width: 639px) {
  .furnish-gallery__header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .furnish-gallery__title {
    font-size: 26px;
  }
  
  .furnish-gallery__image {
    border: 2px solid #e0e0e0;
  }

  .furnish-gallery__image img {
    height: 250px;
  }
  
  .furnish-gallery__name {
    font-size: 18px;
  }
}

/* ---------- 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;
  }
}