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

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

.furnish-header {
  background: #c8d6e0;
  position: sticky;
  top: 0;
  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;
  background: #1a2e1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.furnish-logo__icon img {
  width: 35px;
  color: #fff;
}

.furnish-logo__text {
  font-size: 24px;
  font-weight: 600;
  color: #1a2e1a;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
}

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

.furnish-nav .uk-navbar-nav > li > a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  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,
.furnish-nav .uk-navbar-nav > li.uk-active > a {
  color: #1a2e1a;
}

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

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

.furnish-icon:hover {
  color: #1a2e1a;
}

/* Cart Badge */
.furnish-cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #c8e6c9;
  color: #1a2e1a;
  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: #c8d6e0;
  padding: 20px;
}

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

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

.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;
  }
}

/* ============================================================
   Furnish Hero Section Styles
   ============================================================ */

/* ---------- Hero Base ---------- */
.furnish-hero {
  background: #c8d6e0;
  padding: 60px 0 80px;
  overflow: hidden;
}

/* ---------- Left Content ---------- */
.furnish-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.furnish-hero__title {
  font-size: 64px;
  font-weight: 700;
  color: #1a2e1a;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
}

.furnish-hero__subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: 320px;
}

/* Explore Button */
.furnish-hero__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;
  width: fit-content;
}

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

.furnish-hero__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-hero__btn:hover .furnish-hero__btn-arrow {
  transform: rotate(45deg);
}

/* ---------- Center Product (01) ---------- */
.furnish-hero__center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.furnish-hero__product-bg {
  position: absolute;
  width: 320px;
  height: 420px;
  background: #e8e8e8;
  border-radius: 160px;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.furnish-hero__product-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
}

.furnish-hero__product-info {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-top: -20px;
}

.furnish-hero__product-num {
  font-size: 48px;
  font-weight: 700;
  color: #7cb342;
  line-height: 1;
  margin: 0 0 8px 0;
}

.furnish-hero__product-name {
  font-size: 22px;
  font-weight: 600;
  color: #1a2e1a;
  margin: 0 0 12px 0;
}

.furnish-hero__product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: color 0.25s ease;
}

.furnish-hero__product-link:hover {
  color: #1a2e1a;
  text-decoration: none;
}

.furnish-hero__product-link-icon {
  width: 24px;
  height: 24px;
  background: #a8d5a2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2e1a;
  font-size: 12px;
}

/* ---------- Right Product Card (02) ---------- */
.furnish-hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.furnish-hero__card {
  background: #f0f4f0;
  border-radius: 200px 200px 30px 30px;
  padding: 40px 30px 30px;
  text-align: center;
  width: 100%;
  max-width: 280px;
  position: relative;
}

.furnish-hero__card-num {
  font-size: 42px;
  font-weight: 700;
  color: #7cb342;
  line-height: 1;
  margin: 0 0 16px 0;
}

.furnish-hero__card-name {
  font-size: 20px;
  font-weight: 600;
  color: #1a2e1a;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.furnish-hero__card-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 10px 0;
}

.furnish-hero__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: color 0.25s ease;
}

.furnish-hero__card-link:hover {
  color: #1a2e1a;
  text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .furnish-hero__title {
    font-size: 48px;
  }
  
  .furnish-hero__product-bg {
    width: 260px;
    height: 340px;
  }
}

@media (max-width: 959px) {
  .furnish-hero {
    padding: 40px 0 60px;
  }
  
  .furnish-hero__title {
    font-size: 42px;
  }
  
  .furnish-hero__left {
    padding-right: 0;
    text-align: center;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .furnish-hero__subtitle {
    max-width: 100%;
  }
  
  .furnish-hero__center {
    margin-bottom: 40px;
  }
  
  .furnish-hero__product-bg {
    width: 280px;
    height: 360px;
  }
}

@media (max-width: 639px) {
  .furnish-hero__title {
    font-size: 36px;
  }
  
  .furnish-hero__product-bg {
    width: 220px;
    height: 300px;
  }
  
  .furnish-hero__card {
    max-width: 240px;
    padding: 30px 20px 20px;
  }
}

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

.furnish-category {
  padding: 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 Material Section Styles
   ============================================================ */

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

.furnish-material__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.furnish-material__media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

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

.furnish-material__content {
  padding: 20px 40px;
}

.furnish-material__title {
  font-size: 42px;
  font-weight: 700;
  color: #1a2e1a;
  line-height: 1.2;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.furnish-material__text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 40px 0;
}

.furnish-material__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-material__btn:hover {
  background: #98c992;
  text-decoration: none;
  color: #1a2e1a;
  transform: translateY(-2px);
}

.furnish-material__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-material__btn:hover .furnish-material__btn-arrow {
  transform: rotate(45deg);
}

/* ---------- Material Responsive ---------- */
@media (max-width: 959px) {
  .furnish-material {
    padding: 60px 0;
  }
  
  .furnish-material__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .furnish-material__content {
    padding: 0;
    text-align: center;
  }
  
  .furnish-material__title {
    font-size: 36px;
  }
  
  .furnish-material__btn {
    margin: 0 auto;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Category tag */
.furnish-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-showcase__name {
  font-size: 32px;
  font-weight: 700;
  color: #1a2e1a;
  margin: 0;
  line-height: 1.2;
}

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

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

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

/* Buy Now button */
.furnish-showcase__buy {
  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;
  width: fit-content;
}

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

.furnish-showcase__buy-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-showcase__buy:hover .furnish-showcase__buy-arrow {
  transform: rotate(45deg);
}

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

.furnish-showcase__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #1a2e1a;
  background: #fff;
  color: #1a2e1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

/* Right: Main product image */
.furnish-showcase__main {
  background: #f8faf5;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

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

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

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

.furnish-showcase__main img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.furnish-showcase__main a:hover img {
  transform: scale(1.02);
}

/* ---------- Showcase Responsive ---------- */
@media (max-width: 959px) {
  .furnish-showcase {
    padding: 60px 0;
  }
  
  .furnish-showcase__thumbs-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  
  .furnish-showcase__thumbs-row img {
    height: 80px;
  }
  
  .furnish-showcase__name {
    font-size: 26px;
  }
  
  .furnish-showcase__main {
    min-height: 350px;
    padding: 30px;
  }
  
  .furnish-showcase__main img {
    max-height: 300px;
  }
}

@media (max-width: 639px) {
  .furnish-showcase__title {
    font-size: 28px;
  }
  
  .furnish-showcase__thumbs-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .furnish-showcase__thumbs-row img {
    height: 100px;
  }
  
  .furnish-showcase__name {
    font-size: 22px;
  }
  
  .furnish-showcase__price {
    font-size: 22px;
  }
  
  .furnish-showcase__main {
    min-height: 280px;
    padding: 20px;
  }
  
  .furnish-showcase__main img {
    max-height: 240px;
  }
}

/* ---------- 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;
  }
}