/* ============================================================
   Floaty Yacht Header Styles - Custom Header CSS
   ============================================================ */

/* ---------- Base Header ---------- */
a:hover {
  text-decoration: none;
}

.furnish-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Transparent header for homepage */
.furnish-header.furnish-header--transparent {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: none;
}

.furnish-header .uk-navbar-container {
  background: transparent !important;
}

/* ---------- Logo ---------- */
.furnish-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.furnish-logo:hover {
  text-decoration: none;
}

.furnish-logo__text {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  transform: skewX(-5deg);
}

/* Logo on dark background (homepage) */
.furnish-header--transparent .furnish-logo__text {
  color: #fff;
}

/* ---------- Navigation Links ---------- */
.furnish-nav.uk-navbar-nav {
  gap: 8px;
}

.furnish-nav.uk-navbar-nav > li > a {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #333 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 8px 16px !important;
  min-height: 36px !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  transition: color 0.25s ease !important;
}

.furnish-nav.uk-navbar-nav > li > a:hover {
  color: #00a8c6 !important;
}

/* Nav active state */
.furnish-header .furnish-nav.uk-navbar-nav > li.uk-active > a {
  color: #00a8c6 !important;
}

/* Nav links on dark background (homepage) */
.furnish-header--transparent .furnish-nav.uk-navbar-nav > li > a {
  color: rgba(255,255,255,0.9) !important;
}

.furnish-header--transparent .furnish-nav.uk-navbar-nav > li > a:hover {
  color: #fff !important;
}

.furnish-header--transparent .furnish-nav.uk-navbar-nav > li.uk-active > a {
  color: #fff !important;
}

/* ---------- Right Icons / Auth ---------- */
.furnish-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.furnish-icon {
  color: #555;
  transition: color 0.25s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.furnish-icon:hover {
  color: #00a8c6;
}

/* Icons on dark background (homepage) */
.furnish-header--transparent .furnish-icon {
  color: rgba(255,255,255,0.9);
}

.furnish-header--transparent .furnish-icon:hover {
  color: #fff;
}

/* Search */
.furnish-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.furnish-search__text {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

.furnish-header--transparent .furnish-search__text {
  color: rgba(255,255,255,0.8);
}

/* Auth Links */
.furnish-auth-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: color 0.25s ease;
}

.furnish-auth-link:hover {
  color: #00a8c6;
  text-decoration: none;
}

.furnish-header--transparent .furnish-auth-link {
  color: rgba(255,255,255,0.9);
}

.furnish-header--transparent .furnish-auth-link:hover {
  color: #fff;
}

/* CTA Button */
.furnish-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 8px;
  border: 1px solid #1a1a1a;
}

.furnish-cta-btn:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

/* CTA on dark background (homepage) */
.furnish-header--transparent .furnish-cta-btn {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}

.furnish-header--transparent .furnish-cta-btn:hover {
  background: #2a2a2a;
  border-color: rgba(255,255,255,0.3);
}

/* Cart Badge */
.furnish-cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 18px;
  height: 18px;
  background: #00a8c6;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Mobile Toggle ---------- */
.furnish-mobile-toggle {
  display: none;
}

/* Mobile toggle on dark background */
.furnish-header--transparent .furnish-mobile-toggle .furnish-icon {
  color: #fff;
}

/* ---------- 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: #00a8c6 !important;
}

.furnish-mobile-menu .uk-nav > li.uk-active > a {
  background: rgba(0,168,198,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: #00a8c6;
}

.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;
  }
}

/* ============================================================
   Floaty Hero Section Styles
   ============================================================ */

/* ---------- Hero Base ---------- */
.furnish-hero {
  position: relative;
  overflow: hidden;
}

/* ---------- Hero Slider ---------- */
.furnish-hero__slider {
  position: relative;
}

.furnish-hero__slider .uk-slideshow-items {
  min-height: 700px;
}

/* ---------- Hero Slide ---------- */
.furnish-hero__slide {
  position: relative;
  width: 100%;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.furnish-hero__slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

/* ---------- Hero Content ---------- */
.furnish-hero__content {
  position: relative;
  z-index: 2;
  padding: 160px 0 200px;
  max-width: 600px;
}

/* Subtitle Top */
.furnish-hero__subtitle-top {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 12px 0;
  font-style: italic;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}

/* Title */
.furnish-hero__title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 16px 0;
  letter-spacing: -1px;
}

/* Description */
.furnish-hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 400px;
}

/* CTA Button */
.furnish-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00a8e8;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.furnish-hero__btn:hover {
  background: #0095d0;
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,168,232,0.3);
}

/* ---------- Slider Dots ---------- */
.furnish-hero__slider .uk-dotnav {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.furnish-hero__slider .uk-dotnav > * > * {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid transparent;
}

.furnish-hero__slider .uk-dotnav > * > :hover,
.furnish-hero__slider .uk-dotnav > * > :focus {
  background: rgba(255,255,255,0.7);
}

.furnish-hero__slider .uk-dotnav > .uk-active > * {
  background: #fff;
  transform: scale(1.2);
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .furnish-hero__title {
    font-size: 48px;
  }
}

@media (max-width: 959px) {
  .furnish-hero__slider .uk-slideshow-items {
    min-height: 600px;
  }
  
  .furnish-hero__slide {
    min-height: 600px;
  }
  
  .furnish-hero__content {
    padding: 120px 0 160px;
    text-align: center;
    max-width: 100%;
  }
  
  .furnish-hero__title {
    font-size: 42px;
  }
  
  .furnish-hero__desc {
    max-width: 100%;
  }
  
  .furnish-hero__search-bar {
    margin-top: -40px;
  }
  
  .furnish-hero__search-wrap {
    padding: 20px;
  }
  
  .furnish-hero__search-item {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
  }
  
  .furnish-hero__search-item:last-child {
    border-bottom: none;
  }
  
  .furnish-hero__slider .uk-dotnav {
    bottom: 100px;
  }
}

@media (max-width: 639px) {
  .furnish-hero__slider .uk-slideshow-items {
    min-height: 500px;
  }
  
  .furnish-hero__slide {
    min-height: 500px;
  }
  
  .furnish-hero__content {
    padding: 100px 0 140px;
  }
  
  .furnish-hero__subtitle-top {
    font-size: 18px;
  }
  
  .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__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 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;
  }
}

/* ---------- 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;
  }
}

/* ============================================================
   SeaVolt Hero Banner Styles (首页专用)
   ============================================================ */

/* ---------- SeaVolt Hero Base ---------- */
.furnish-hero--seavolt {
  background: linear-gradient(135deg, #0a6e7a 0%, #0a8fa0 40%, #4db8c8 70%, #a8dde6 100%);
  padding: 140px 0 80px;
  overflow: hidden;
  position: relative;
  margin-top: 0;
}

/* Ocean wave background effect */
.furnish-hero--seavolt .furnish-hero__bg-ocean {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.15' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

/* ---------- Left Side ---------- */
.furnish-hero--seavolt .furnish-hero__left {
  position: relative;
  z-index: 2;
  padding-right: 30px;
}

/* Tagline */
.furnish-hero--seavolt .furnish-hero__tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0 0 24px 0;
  max-width: 280px;
}

/* Search Box */
.furnish-hero--seavolt .furnish-hero__search {
  position: relative;
  margin-bottom: 16px;
}

.furnish-hero--seavolt .furnish-hero__search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  z-index: 2;
}

.furnish-hero--seavolt .furnish-hero__search-input {
  width: 100%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 12px 16px 12px 44px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.furnish-hero--seavolt .furnish-hero__search-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.furnish-hero--seavolt .furnish-hero__search-input:focus {
  outline: none;
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
}

/* Category Menu */
.furnish-hero--seavolt .furnish-hero__categories {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.furnish-hero--seavolt .furnish-hero__category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.furnish-hero--seavolt .furnish-hero__category-item:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  text-decoration: none;
  transform: translateX(4px);
}

.furnish-hero--seavolt .furnish-hero__category-arrow {
  color: rgba(255,255,255,0.7);
}

/* ---------- Right Side ---------- */
.furnish-hero--seavolt .furnish-hero__right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 500px;
}

/* Title */
.furnish-hero--seavolt .furnish-hero__title {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  margin: 0;
  text-align: right;
  pointer-events: none;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.furnish-hero--seavolt .furnish-hero__title span {
  display: block;
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Image */
.furnish-hero--seavolt .furnish-hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.furnish-hero--seavolt .furnish-hero__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
  border-radius: 0;
  aspect-ratio: auto;
  border: none;
}

/* ---------- SeaVolt Responsive ---------- */
@media (max-width: 1199px) {
  .furnish-hero--seavolt .furnish-hero__title span {
    font-size: 56px;
  }
}

@media (max-width: 959px) {
  .furnish-hero--seavolt {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .furnish-hero--seavolt .furnish-hero__left {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .furnish-hero--seavolt .furnish-hero__tagline {
    max-width: 100%;
  }

  .furnish-hero--seavolt .furnish-hero__right {
    min-height: auto;
    justify-content: center;
  }

  .furnish-hero--seavolt .furnish-hero__title {
    position: relative;
    transform: none;
    top: auto;
    text-align: center;
    margin-bottom: 30px;
  }

  .furnish-hero--seavolt .furnish-hero__title span {
    font-size: 42px;
  }

  .furnish-hero--seavolt .furnish-hero__image-wrap {
    max-width: 100%;
  }
}

@media (max-width: 639px) {
  .furnish-hero--seavolt .furnish-hero__title span {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .furnish-hero--seavolt .furnish-hero__category-item {
    padding: 12px 14px;
    font-size: 12px;
  }
}

/* ============================================================
   Featured Products Section
   ============================================================ */

.furnish-featured {
  padding: 80px 0;
  background: #f5f7f9;
}

/* Left Info Column */
.furnish-featured__info-col {
  padding: 40px 0;
}

.furnish-featured__label {
  font-size: 16px;
  font-weight: 400;
  color: #00a8e8;
  margin: 0 0 8px 0;
  font-style: italic;
  font-family: 'Georgia', serif;
}

.furnish-featured__title {
  margin: 0 0 16px 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 0 24px 0;
}

.furnish-featured__view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00a8e8;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.furnish-featured__view-btn:hover {
  background: #0095d0;
  text-decoration: none;
  color: #fff;
}

/* Product Card */
.furnish-featured__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.furnish-featured__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Product Image */
.furnish-featured__image-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: #f8f8f8;
}

.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);
}

/* Product Content */
.furnish-featured__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.furnish-featured__location {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.furnish-featured__name {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.furnish-featured__specs {
  font-size: 12px;
  color: #999;
  margin: 0 0 16px 0;
}

/* Footer */
.furnish-featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 16px;
  margin-top: auto;
}

.furnish-featured__price-label {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.furnish-featured__price {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

/* Button */
.furnish-featured__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 16px;
  height: 36px;
  background: #00a8e8;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.furnish-featured__btn:hover {
  background: #0095d0;
  color: #fff;
  text-decoration: none;
}

/* ---------- Featured Responsive ---------- */
@media (max-width: 959px) {
  .furnish-featured {
    padding: 60px 0;
  }

  .furnish-featured__title span {
    font-size: 28px;
  }

  .furnish-featured__info-col {
    padding: 0 0 30px 0;
    text-align: center;
  }
}

@media (max-width: 639px) {
  .furnish-featured__title span {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .furnish-featured__image-wrap {
    height: 200px;
  }
}

/* ---------- 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;
}

/* Dot Navigation */
.furnish-featured .uk-dotnav {
  z-index: 10;
  position: static;

}

.furnish-featured .uk-dotnav > * {
  padding-left: 4px;
  padding-right: 4px;
}

.furnish-featured .uk-dotnav > * > * {
  width: 8px;
  height: 8px;
  background: rgba(0,0,0,0.15);
  border: 2px solid transparent;
  border-radius: 50%;
  display: block;
}

.furnish-featured .uk-dotnav > .uk-active > * {
  background: #00a8e8;
  border-color: #00a8e8;
}

.furnish-featured .uk-dotnav > * > :hover,
.furnish-featured .uk-dotnav > * > :focus {
  background: rgba(0,168,232,0.5);
  border-color: rgba(0,168,232,0.5);
}

/* Navigation Controls */
.furnish-featured__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.furnish-featured__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  border: 1px solid #eee;
  text-decoration: none;
  transition: all 0.25s ease;
}

.furnish-featured__arrow:hover {
  background: #00a8e8;
  color: #fff;
  border-color: #00a8e8;
  text-decoration: 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;
}

/* ---------- 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);
}

/* 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;
  }
}

/* ============================================================
   Footer Styles
   ============================================================ */

.am-footer {
  background: #0a1628;
  color: #fff;
}

/* ---------- 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: rgba(255,255,255,0.5);
  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.7);
  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: #070f1c;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.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.4);
  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;
  }
}