
.tab-content-container .product-name {
  min-height: 78px !important;
}

.tab-content-container .product-price {
    font-size: 18px;
    font-weight: 500;
}
.tab-content-container .product-price  del{
    font-weight: 500;
}
.tp-leftarrow tparrows hesperiden .best-sellers {
  padding: 60px 0;
  background: #f8f9fa;
}

.best-sellers .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  color: #666;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
  margin-bottom: 40px;
  padding: 0;
}

/* Responsive grid for products */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.home-page {
  overflow: hidden;
}

.product-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card {
  position: relative;
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: #f5f5f5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff4757;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-info {
  padding: 20px;
}


.product-name {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.product-name a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-name a:hover {
  color: #00d4aa;
}

.product-spec {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00d4aa;
  margin-bottom: 15px;
}

.product-actions {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #00d4aa;
  color: white;
}

.btn-primary:hover {
  background: #00b894;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #00d4aa;
  border: 2px solid #00d4aa;
}

.btn-outline:hover {
  background: #00d4aa;
  color: white;
}

.section-footer {
  text-align: center;
  margin-top: 40px;
}

.no-products {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  padding: 40px 0;
}

/* Promotional Marquee */
.promotional-marquee {
  background: #00aaa6;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-item {
  color: var(--hisense-white);
  font-size: 14px;
  font-weight: 400;
  margin-right: 66px;
  display: inline-block;
  position: relative;
}

.marquee-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -45.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 1px;
  background-color: var(--hisense-white);
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.promotional-marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* Home Banner */
.home-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.home-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* Revolution Slider Styling */
.home-banner .rev_slider_wrapper {
  width: 100% !important;
  margin: 0 !important;
}

.home-banner .rev_slider {
  width: 100% !important;
  height: auto !important;
}

/* Ensure Revolution Slider is responsive */
.home-banner .tp-caption {
  white-space: normal !important;
}

/* Revolution Slider Navigation Styling */
.home-banner .tp-leftarrow,
.home-banner .tp-rightarrow {
  background: rgba(0, 0, 0, 0.5) !important;
  border-radius: 50% !important;
  width: 60px !important;
  height: 60px !important;
}

/* .home-banner .tp-leftarrow:hover,
.home-banner .tp-rightarrow:hover {
    background: rgba(0, 0, 0, 0.7) !important;
} */

.home-banner .tp-bullets {
  bottom: 20px !important;
}

.home-banner .tp-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
}

.home-banner .tp-bullet.selected {
  background: rgba(255, 255, 255, 1) !important;
}

@media (max-width: 768px) {
  .home-banner .tp-leftarrow,
  .home-banner .tp-rightarrow {
    width: 40px !important;
    height: 40px !important;
  }

  .home-banner .tp-bullets {
    bottom: 15px !important;
  }

  .home-banner .tp-bullet {
    width: 8px !important;
    height: 8px !important;
  }
}

@media (max-width: 480px) {
  .home-banner .tp-leftarrow,
  .home-banner .tp-rightarrow {
    width: 35px !important;
    height: 35px !important;
  }

  .home-banner .tp-bullets {
    bottom: 10px !important;
  }
}

/* Revolution Slider Loading State */
.home-banner .tp-loader {
  background: rgba(0, 0, 0, 0.1) !important;
}

.home-banner .tp-loader.spinner2 .dot1,
.home-banner .tp-loader.spinner2 .dot2 {
  background-color: #00aaa6 !important;
}

/* Ensure slider doesn't overflow */
.home-banner {
  max-width: 100%;
  margin: 0 auto;
}

.home-banner .rev_slider_wrapper,
.home-banner .rev_slider {
  max-width: 100% !important;
}

/* Discover Our Series Section */
.discover-series-section {
  background: #000000;
  padding: 60px 0 90px 0;
}

.discover-series-section .section-title {
  color: var(--hisense-white);
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 40px;
  row-gap: 70px;
  margin: 0 auto;
}

.series-item {
  text-align: center;
}

.series-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.series-link:hover {
  transform: translateY(-5px);
}

.series-image {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.series-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.series-name {
  color: var(--hisense-white);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

/* Spotlight Moments Wrapper */
.spotlight-moments-wrapper {
  background: var(--hisense-white);
  padding: 80px 0 0;
}

.spotlight-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Best Sellers Section */
.best-sellers-section,
.new-arrivals-section {
  background: var(--hisense-white);
  overflow: hidden;
}

.best-sellers-section {
  padding: 80px 0 35px;
}

.new-arrivals-section {
  padding: 35px 0 0;
}

.best-sellers-section .container,
.new-arrivals-section .container {
  overflow: visible;
  text-align: center;
}

.best-sellers-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.best-sellers-tabs {
  display: inline-flex;
  justify-content: center;
  margin: 0 auto 50px auto;
  gap: 0;
  position: relative;
  border-bottom: 1px solid #cacaca;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 60px;
  font-size: 16px;
  font-weight: 400;
  color: #585858;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  z-index: 2;
}

.tab-btn:hover {
  color: var(--hisense-primary);
}

.tab-btn.active {
  color: var(--hisense-primary);
  border-bottom-color: var(--hisense-primary);
}

.tab-content-container {
  position: relative;
  overflow: visible;
}

/* Best Sellers Tab Content */
.best-sellers-section .tab-content {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.best-sellers-section .tab-content.active {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
}

/* New Arrivals Tab Content */
.new-arrivals-section .tab-content {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.new-arrivals-section .tab-content.active {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
}

/* Force visibility for inline styles */
.tab-content[style*="display: block"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.tab-content .swiper-initialized {
  overflow: visible !important;
  padding: 0 60px;
  margin: 0 -60px;
}

.tab-content .swiper-navigation-wrapper {
  margin-top: 30px;
}

.tab-content .swiper-wrapper {
  overflow: visible !important;
}

.tab-content.swiper-slide {
  height: auto;
}

.product-card {
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 15px;
  line-height: 15px;
  background: #049c98;
  color: var(--hisense-white);
  border-radius: 300px;
  padding: 8px 15px 4px 15px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-badge {
  opacity: 0;
}

.best-sellers-product-image {
  background: #e9f5f5;
  height: 350px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9f5f5;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.best-sellers-product-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.best-sellers-product-image .hover-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.best-sellers-product-image .details-btn,
.best-sellers-product-image .add-to-cart-btn,
.best-sellers-product-image .buy-btn {
  background: white;
  color: var(--hisense-secondary);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  color: #333333;
  font-size: 16px;
  /* line-height: 100%; */
  font-weight: 400;
  transition: all 0.3s ease;
  opacity: 0;
  width: 100%;
  max-width: 220px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: none;
}

.best-sellers-product-image .details-btn,
.best-sellers-product-image .add-to-cart-btn {
  transform: translateX(-30px);
}

.best-sellers-product-image .add-to-cart-btn:hover {
  background: var(--hisense-primary);
  color: white;
}

.best-sellers-product-image .add-to-cart-btn.variable {
  background: #6c757d;
  color: white;
}

.best-sellers-product-image .add-to-cart-btn.variable:hover {
  background: var(--hisense-primary);
  color: white;
}

.best-sellers-product-image .out-of-stock-btn {
  background: #f8f9fa;
  color: #dc3545;
  cursor: not-allowed;
  transform: translateX(-30px);
}

/* Processing/Adding state for hover buttons */
.best-sellers-product-image .add-to-cart-btn.processing,
.best-sellers-product-image .add-to-cart-btn.adding,
.best-sellers-product-image .add-to-cart-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
  background: #ccc !important;
  color: #666 !important;
}

.best-sellers-product-image .add-to-cart-btn.processing:hover,
.best-sellers-product-image .add-to-cart-btn.adding:hover,
.best-sellers-product-image .add-to-cart-btn:disabled:hover {
  background: #ccc !important;
  color: #666 !important;
  transform: translateX(-30px);
}

.best-sellers-product-image .buy-btn {
  transform: translateX(30px);
}

.product-card:hover .best-sellers-product-image::before {
  opacity: 1;
}

.product-card:hover .best-sellers-product-image .hover-buttons {
  opacity: 1;
}

.product-card:hover .best-sellers-product-image .details-btn,
.product-card:hover .best-sellers-product-image .add-to-cart-btn,
.product-card:hover .best-sellers-product-image .out-of-stock-btn {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.product-card:hover .best-sellers-product-image .buy-btn {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.2s;
}

.best-sellers-product-image .details-btn:hover,
.best-sellers-product-image .buy-btn:hover {
  background: var(--hisense-primary);
  color: white;
  transform: translateY(-2px);
}

.best-sellers-product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  mix-blend-mode: darken;
}

.product-card:hover .best-sellers-product-img {
  transform: scale(1.07);
}

/* ----------------------------------------------------------- */

.floating-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-button {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); */
  transition: all 0.3s ease;
  z-index: 10;
}

.floating-button::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: inherit;
  animation: jumbing 2s infinite;
  z-index: -1;
  background: rgba(255, 255, 255, 0.1);
}

.floating-button > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.floating-button::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: inherit;
  /* animation: pulse 2s infinite; */
  z-index: -1;
  background: rgba(255, 255, 255, 0.6);
}

@keyframes jumbing {
  0% {
    scale: 1;
    /* opacity: 1; */
  }

  50% {
    scale: 1.2;
    /* opacity: 0.7; */
  }

  100% {
    scale: 1.5;
    /* opacity: 0; */
  }
}

/* .floating-button:hover {
    transform: scale(1.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.floating-button:hover::before {
    animation-play-state: paused;
} */

/* Button positions and colors */
.btn-1 {
  top: 8%;
  left: 58%;
}

.btn-2 {
  top: 39%;
  left: 38.5%;
}

.btn-3 {
  top: 81%;
  left: 34%;
}

/* Hover Cards */
.hover-card {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(-50%) translateX(20px);
  z-index: 200;
}

/* Right positioned hover card (default) */
.hover-card-right {
  right: 60px;
  transform: translateY(-50%) translateX(20px);
}

.hover-card-right .hover-card-svg {
  position: absolute;
  right: -50px;
  top: 36%;
}

/* Left positioned hover card */
.hover-card-left {
  left: 60px;
  right: auto;
  transform: translateY(-50%) translateX(-20px);
}

.hover-card-left .hover-card-svg {
  position: absolute;
  left: -50px;
  right: auto;
  top: 36%;
  transform: scaleX(-1); /* Flip the SVG horizontally */
}

.hover-card-svg {
  position: absolute;
  right: -50px;
  top: 36%;
}

/* Connecting Line */

.connecting-line {
  position: absolute;
  right: 60px;
  top: 50%;
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
}

.connecting-line::before {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid rgba(255, 255, 255, 0.8);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.floating-button:hover .hover-card {
  opacity: 1;
  visibility: visible;
}

.floating-button:hover .hover-card-right {
  transform: translateY(-50%) translateX(0);
}

.floating-button:hover .hover-card-left {
  transform: translateY(-50%) translateX(0);
}

.floating-button:hover .connecting-line {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scaleX(1);
}

.floating-button:hover .connecting-line::before {
  opacity: 1;
}

/* ----------------------------------------------------------- */

.product-info {
  /* text-align: left; */
  padding: 20px 0 0 0;
}

.product-info .main-button {
  min-width: 198px;
  float: left;
}

.product-name {
  color: #000000;
  font-size: 17px;
  line-height: 31px;
  font-weight: 400;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-spec {
  font-size: 14px;
  color: var(--hisense-dark-gray);
  margin: 0;
  font-weight: 400;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

/* Swiper Navigation Wrapper */
.swiper-navigation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  z-index: 10;
}

.tab-content .swiper-button-prev,
.tab-content .swiper-button-next {
  width: 60px !important;
  height: 60px !important;
  background: var(--hisense-white) !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 50% !important;
  color: transparent !important;
  font-size: 0 !important;
  transition: all 0.3s ease !important;
  margin-top: 0 !important;
  top: auto !important;
  bottom: -80px !important;
  transform: translateY(0) !important;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.tab-content .swiper-button-prev img,
.tab-content .swiper-button-next img {
  width: 19px;
  height: auto;
  transition: filter 0.3s ease;
}

.tab-content .swiper-button-prev:hover,
.tab-content .swiper-button-next:hover {
  background: var(--hisense-primary) !important;
  color: transparent !important;
  border-color: var(--hisense-primary) !important;
}

.tab-content .swiper-button-prev:hover img,
.tab-content .swiper-button-next:hover img {
  filter: brightness(0) invert(1);
}

.tab-content .swiper-button-prev {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0 !important;
}

.tab-content .swiper-button-next {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0 !important;
}

.smart-living-section {
  position: relative;
  padding: 50px 0 0 0;
}

.smart-living-section .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.smart-living-background {
  position: relative;
  width: 100%;
  height: 850px;
  z-index: 1;
}

.smart-living-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smart-living-content {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 1200px;
}

.smart-living-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 60px;
  color: #000000;
}

.smart-living-product {
  padding: 7px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  float: left;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
}

.smart-living-image {
  padding: 20px;
  background: #ffffff;
  border-radius: 2.5px;
}

.smart-living-info {
  padding: 20px 16px 16px 16px;
}

.product-image {
  width: 100%;
  height: auto;
  max-width: 200px;
  object-fit: contain;
}

.smart-living-title {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  margin: 0 0 10px 0;
  line-height: 1.3;
  text-align: left;
}

.smart-living-description {
  font-size: 14px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.4;
  text-align: left;
}

.smart-living-description p {
  font-size: 16px;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.smart-living-description p:last-child {
  margin-bottom: 0;
}

.smart-living-description .highlight-text {
  font-weight: 500;
  color: #393d46;
}

.smart-living-button {
  display: inline-block;
  background-color: #00aaa6;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.smart-living-button:hover {
  background-color: #008a87;
  color: white;
}

.smart-living-background .container1 {
  position: absolute;
  z-index: 9;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
}

/* Explore with Hisense Section */
.explore-hisense-section {
  padding: 80px 0 50px;
  background-color: #fff;
}

.explore-hisense-section .section-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 55px;
}

.explore-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 40px;
  height: 615px;
}

.featured-article {
  position: relative;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.featured-article-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  position: relative;
}

.featured-article-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-article-link:hover .featured-img {
  transform: scale(1.05);
}

.featured-article-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px 40px;
  z-index: 2;
}

.featured-article-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.article-date {
  font-size: 14px;
  color: #666;
  display: block;
  margin-bottom: 10px;
}

.featured-article .article-date {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.featured-article .article-title {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  max-width: 367px;
}

.side-articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 0.7fr;
  gap: 26px;
  height: 100%;
}

.side-article {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

.side-article:first-child {
  grid-column: 1 / -1;
}

.side-article-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  position: relative;
}

.side-article-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.side-article-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.article-badge {
  position: absolute;
  top: 22px;
  right: 40px;
  background-color: #00aaa6;
  color: white;
  padding: 3px 8px 1px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  z-index: 3;
}

.side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.side-article-link:hover .side-img {
  transform: scale(1.05);
}

.side-article-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px 40px;
  z-index: 2;
}

.side-article .article-date {
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.side-article .article-title {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

.explore-view-all {
  text-align: center;
  margin-top: 60px;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: #00aaa6;
  border: 2px solid #00aaa6;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: font-primary;
}

.view-all-btn:hover {
  background-color: #00aaa6;
  color: white;
}

/* Where to Buy Section */
.where-to-buy-section {
  padding: 50px 0 100px;
  background-color: #fff;
}

.where-to-buy-section .section-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 55px;
}

.where-to-buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
}

.location-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 450px;
}

.location-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  position: relative;
}

.location-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.location-link:hover .location-img {
  transform: scale(1.05);
}

.location-content {
  position: absolute;
  width: calc(100% - 40px);
  bottom: 20px;
  left: 50%;
  padding: 18px 30px 18px 20px;
  transform: translateX(-50%);
  text-align: center;
  background-color: #fff;
  z-index: 2;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location-title {
  font-size: 22px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

.location-arrow {
  width: 27px;
  height: auto;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.location-link:hover .location-arrow {
  transform: translateX(10px);
}

/* ===== CONNECTING THE WORLD WITH HISENSE SECTION ===== */
.connecting-world-section {
  padding: 50px 0 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin: 20px auto 0;
  /* max-width: 600px; */
  line-height: 1.6;
}

.timeline-container {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.timeline-container::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background: rgba(217, 217, 217, 0.5);
  transform: translateY(-63px);
}

.timeline-container .swiper,
.timeline-container .swiper-wrapper {
  overflow: visible;
}

.timeline-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 80px;
  /* min-height: 400px; */
}

.timeline-container .swiper-slide:not(.swiper-slide-prev) .timeline-slide,
.timeline-container .swiper-slide:not(.swiper-slide-prev) .timeline-content {
  opacity: 0.5;
}

.timeline-image-container {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.timeline-image {
  width: 100%;
  max-width: 377px;
  object-fit: cover;
}

.timeline-slide {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-left: 80px;
  row-gap: 150px;
  /* min-height: 400px;
    height: 100%; */
}

.timelibe_equal_height {
  /* flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%; */
  height: 258px;
}

.timeline-slide::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0%;
  height: 1px;
  background: #00aaa6;
  left: 100px;
  transform: translateY(-50%);
  transition: width 4s 1s ease-in;
}

.swiper-slide-prev .timeline-slide::after {
  width: 100%;
}

.timeline-year {
  font-size: 42px;
  line-height: 44px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.swiper-slide-prev .timeline-year {
  color: #00aaa6;
}

.timeline-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.timeline-content {
  /* background: red; */
  padding-bottom: 20px;
}

.even-slide .timelibe_equal_height {
  display: flex;
  align-items: flex-end;
}

.timeline-slide {
  position: relative;
}

.timeline-dot {
  width: 11px;
  height: 11px;
  background: #00aaa6;
  border-radius: 50%;
  left: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-slide-prev .timeline-dot::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 31px;
  border: 1px solid #00aaa6;
  background: rgba(153, 153, 153, 0.15);
  border-radius: 50%;
  transform: translate(-34%, -34%);
}

.swiper-slide-prev .timeline-dot::before {
  content: "";
  position: absolute;
  width: 53px;
  height: 53px;
  border: 1px solid #00aaa6;
  background: rgba(153, 153, 153, 0.15);
  border-radius: 50%;
  opacity: 0.2;
  left: -22px;
  top: -22px;
  animation: pulse 2s infinite ease-out;
}

/* .swiper-slide:not(.swiper-slide-prev) .timeline-image-container {
    display: none;
} */

@keyframes pulse {
  0% {
    transform: translate(-40%, -40%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-40%, -40%) scale(1.2);
    opacity: 0;
  }
}

.connecting-world-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  width: 137px;
  margin-inline: auto;
  margin-top: 80px;
  padding-bottom: 10px;
}

.connecting-world-swiper .swiper-button-next,
.connecting-world-swiper .swiper-button-prev {
  position: unset;
  background: #ffffff;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease !important;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important; */
}

.connecting-world-swiper .swiper-button-next img,
.connecting-world-swiper .swiper-button-prev img {
  width: 19px;
  height: auto;
  transition: filter 0.3s ease;
}

.connecting-world-swiper .swiper-button-next:hover,
.connecting-world-swiper .swiper-button-prev:hover {
  background: var(--hisense-primary) !important;
  color: transparent !important;
  border-color: var(--hisense-primary) !important;
  transform: scale(1.1) !important;
}

.connecting-world-swiper .swiper-button-next:hover img,
.connecting-world-swiper .swiper-button-prev:hover img {
  filter: brightness(0) invert(1);
}

.main-button:hover {
  background-color: #008c86;
}

.room-tabs {
  display: flex;
  justify-content: center;
  column-gap: 5px;
  margin: auto;
  max-width: fit-content;
  padding: 3px;
  border-radius: 100px;
  background-color: rgb(255 255 255 / 15%);
  border: 1px solid rgb(255 255 255 / 25%);
  backdrop-filter: blur(20px);
}

.room-tab-btn {
  min-width: 198px;
  color: rgb(0 0 0 / 30%);
  background-color: rgb(255 255 255 / 30%);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.room-tab-btn.active {
  background-color: #00a9a2;
  color: white;
  border-color: #ffffff;
}

.room-content {
  display: none;
  height: 850px;
  background-size: cover;
  background-repeat: no-repeat;
}

.room-content.active {
  display: block;
}

path:nth-of-type(1) {
  transform: scale(0.25) translate(43px, 33px);
  /* shrink to 80% */
  transform-origin: center;
}

path:nth-of-type(2) {
  animation-delay: 0.5s;
  stroke: white;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  /* animation: draw 2s ease forwards; */
}

.floating-button:hover .hover-card path:nth-of-type(2) {
  animation: draw 2s ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.floating-button:hover .smart-living-product {
  opacity: 1;
  visibility: visible;
}

#rev_slider_1_1_wrapper .hesperiden.tparrows.tp-leftarrow:before,
#rev_slider_1_1_wrapper .hesperiden.tparrows.tp-rightarrow:before {
  display: none !important;
}

.home #rev_slider_1_1_wrapper .hesperiden.tparrows.tp-leftarrow {
  background-image: url(../images/arrow_left.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.home #rev_slider_1_1_wrapper .hesperiden.tparrows.tp-rightarrow {
  background-image: url(../images/arrow_right.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.home #rev_slider_1_1_wrapper .hesperiden.tparrows.tp-leftarrow,
.home #rev_slider_1_1_wrapper .hesperiden.tparrows.tp-rightarrow {
  transition: background 0.4s ease-in-out;
}

.home #rev_slider_1_1_wrapper .hesperiden.tparrows.tp-leftarrow:hover,
.home #rev_slider_1_1_wrapper .hesperiden.tparrows.tp-rightarrow:hover {
  background-color: #017e7c !important;
}

@media (max-width: 1200px) {
  .where-to-buy-section .section-title {
    margin-bottom: 30px;
  }

  .explore-view-all {
    margin-top: 40px;
  }

  .newsletter-section {
    padding: 70px 0;
  }

  .side-article-content {
    padding: 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .room-content,
  .smart-living-background {
    height: 600px;
  }
}

@media (max-width: 1024px) {
  .connecting-world-section {
    padding: 30px 0 60px 0;
  }

  .timeline-slide {
    min-height: 350px;
    padding: 15px;
  }

  .timeline-image-container {
    max-width: 250px;
    margin-bottom: 25px;
  }

  .timeline-image {
    height: 180px;
  }

  .timeline-year {
    font-size: 36px;
  }

  .timeline-description {
    font-size: 13px;
    max-width: 250px;
  }

  .explore-hisense-section .section-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 860px) {
  .explore-content {
    gap: 20px;
    height: auto;
    grid-template-columns: repeat(1, 1fr);
  }

  .featured-article-content {
    padding: 30px 15px 15px 30px;
  }

  .featured-article .article-title {
    font-size: 16px;
    max-width: 280px;
  }

  .side-article .article-title {
    font-size: 14px;
  }

  .side-article .article-date,
  .featured-article .article-date {
    font-size: 12px;
  }

  .article-badge {
    top: 15px;
    right: 30px;
    font-size: 11px;
    padding: 2px 6px 1px;
  }

  .where-to-buy-grid {
    gap: 20px;
    width: 100%;
  }

  .location-card {
    height: 320px;
  }

  .location-content {
    padding: 15px;
  }

  .location-title {
    font-size: 17px;
  }

  .location-arrow {
    width: 24px;
  }

  .smart-living-section {
    padding: 30px 0 0 0;
  }

  .smart-living-title {
    margin-bottom: 40px;
    padding: 30px 0;
    font-size: 35px;
  }

  .smart-living-product {
    left: 4%;
    bottom: 12%;
    padding: 6px;
    max-width: 250px;
  }

  .product-image-container img {
    max-width: 160px;
    height: auto;
  }

  .product-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .product-description {
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .product-description p {
    margin: 0 0 4px 0;
    line-height: 1.4;
  }

  .smart-living-product .main-button {
    min-width: 180px;
    min-height: 42px;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 21px;
  }

  .smart-living-product .product-image-container {
    padding: 15px;
    background: #ffffff;
    border-radius: 2.5px;
    margin-bottom: 10px;
  }

  .where-to-buy-section {
    padding: 30px 0 80px 0;
  }

  .featured-article {
    height: 360px;
  }

  /* Best Sellers Mobile */
  .best-sellers-section {
    padding: 60px 0 20px;
  }

  .new-arrivals-section {
    padding: 20px 0 0;
  }

  .best-sellers-tabs {
    margin-bottom: 30px;
    gap: 0;
  }

  .tab-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .tab-content .swiper-initialized {
    padding: 0 50px;
    margin: 0 -50px;
    overflow: visible !important;
  }

  .product-card {
    padding: 15px;
  }

  .product-name {
    font-size: 14px;
    min-height: 36px;
  }

  .product-spec {
    font-size: 12px;
  }

  .tab-content .swiper-button-prev,
  .tab-content .swiper-button-next {
    width: 50px !important;
    height: 50px !important;
    font-size: 0 !important;
    bottom: -70px !important;
  }

  .tab-content .swiper-button-prev img,
  .tab-content .swiper-button-next img {
    width: 19px;
    height: auto;
  }

  /* Discover Series Mobile */
  .discover-series-section {
    padding: 60px 0;
  }

  .discover-series-section .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .series-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .series-image {
    height: 80px;
  }

  .series-name {
    font-size: 14px;
  }

  /* Spotlight Moments Mobile */
  .spotlight-moments-wrapper {
    padding: 60px 0 0;
  }
}

@media (max-width: 767px) {
  .where-to-buy-section {
    padding: 0 0 50px 0;
  }

  .connecting-world-section {
    padding: 20px 0 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .timeline-slide {
    min-height: 300px;
    padding: 10px;
  }

  .timeline-image-container {
    max-width: unset;
    margin-bottom: 20px;
    width: 100%;
  }

  .timeline-image {
    height: 150px;
  }

  .timeline-content {
    max-width: 250px;
  }

  .timeline-year {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .timeline-description {
    font-size: 12px;
    max-width: 200px;
  }

  .newsletter-section {
    padding: 50px 0;
  }

  .room-tab-btn {
    padding: 8px 17px;
  }

  .timeline-container .swiper-slide:not(.swiper-slide-prev) .timeline-slide,
  .timeline-container .swiper-slide:not(.swiper-slide-prev) .timeline-content {
    opacity: 1;
  }

  .timeline-slide .timelibe_equal_height {
    width: 100%;
  }

  .timeline-image {
    height: 100%;
    max-width: 100%;
    object-fit: cover;
  }

  .timeline-content {
    max-width: unset;
  }
  .timeline-description {
    max-width: unset;
  }

  .room-content,
  .smart-living-background {
    aspect-ratio: 600 / 1000;
    width: 100%;
    height: auto;
  }
}
.floating-button:hover {
  z-index: 999;
}

@media (max-width: 480px) {
  .best-sellers-section {
    padding: 40px 0 15px;
  }

  .new-arrivals-section {
    padding: 15px 0 0;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .tab-content .swiper-initialized {
    padding: 0 20px;
    margin: 0 -20px;
    overflow: visible !important;
  }

  .product-card {
    padding: 12px;
  }

  .product-name {
    font-size: 13px;
    min-height: 32px;
  }

  .tab-content .swiper-button-prev,
  .tab-content .swiper-button-next {
    display: none !important;
  }

  .discover-series-section {
    padding: 40px 0;
  }

  .discover-series-section .section-title {
    font-size: 24px;
  }

  .series-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .series-image {
    height: 80px;
    margin-bottom: 15px;
  }

  .spotlight-moments-wrapper {
    padding: 40px 0 0;
  }

  .explore-content {
    grid-template-columns: 1fr;
    gap: 20px;
    height: auto;
  }

  .side-articles {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 200px);
    gap: 20px;
  }

  .side-article:first-child {
    grid-column: 1;
  }

  .featured-article {
    height: 250px;
  }

  .featured-article-content {
    padding: 20px 15px 15px 20px;
  }

  .featured-article .article-title {
    font-size: 16px;
    max-width: none;
  }

  .side-article .article-title {
    font-size: 14px;
  }

  .side-article .article-date,
  .featured-article .article-date {
    font-size: 12px;
  }

  .article-badge {
    top: 12px;
    right: 20px;
    font-size: 10px;
    padding: 2px 6px 1px;
  }

  /* Where to Buy Small Mobile */
  .where-to-buy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .location-card {
    height: 250px;
  }

  .location-content {
    padding: 15px;
  }

  .location-title {
    font-size: 16px;
  }

  .location-arrow {
    width: 18px;
  }

  /* Smart Living Mobile */
  .smart-living-section {
    padding: 0;
  }

  .smart-living-title {
    margin-bottom: 30px;
    padding: 0;
    font-size: 28px;
  }

  .smart-living-product {
    left: 3%;
    bottom: 8%;
    padding: 5px;
    max-width: 200px;
  }

  .product-image-container img {
    max-width: 120px;
    height: auto;
  }

  .product-title {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .product-description {
    font-size: 11px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .product-description p {
    margin: 0;
    color: #393d46;
    line-height: 1.3;
  }

  .smart-living-product .main-button {
    min-width: 140px;
    min-height: 35px;
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 18px;
  }

  .smart-living-product .product-image-container {
    padding: 10px;
    background: #ffffff;
    border-radius: 2.5px;
    margin-bottom: 8px;
  }
}

/* Best Sellers Responsive Design */
@media (max-width: 768px) {
  .best-sellers {
    padding: 40px 0;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .product-image {
    height: 200px;
  }

  .product-info {
    padding: 15px;
  }

  .product-name {
    font-size: 1.1rem;
  }

  .product-price {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .best-sellers-tabs {
    display: inline-block;
    white-space: nowrap;
    overflow-x: auto;
    width: 100%;
  }
  .room-tabs {
    overflow: auto;
    justify-content: initial;
  }

  .room-tab-btn {
    min-width: 100px;
  }

  .home .where-to-buy-section {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .products-grid,
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-image {
    height: 180px;
  }
  .product-name {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }

  .product-price {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }

  .best-sellers-product-image {
    height: 200px;
  }
  .best-sellers-tabs {
    display: inline-block;
    white-space: nowrap;
    overflow-x: auto;
    width: 100%;
  }

  .where-to-buy-section {
    margin-top: 25px;
  }
  .where-to-buy-section .section-title {
    margin-bottom: 20px;
  }
  .smart-living-title {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
