body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  overflow-x: hidden;
}
.more-link {
	display: block;
}
.owl-carousel {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}

.owl-stage-outer {
  overflow: hidden;
}

/* HEADER */
/* Top Bar Styling */
.top-bar {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
}
.carousel {
  display: flex;
  flex-direction: column;
  height: 20px;
  position: relative;
}
.carousel-item {
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: opacity 0.6s ease-in-out;
}
.carousel-item.active {
  opacity: 1;
}


.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  height: 70px;
}
.logo {
  margin-right: 10px; /* reduced space between logo and menu */
  display: flex;
  align-items: center;
}
.logo img {
  height: 60px;
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav li {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  color: #121212;
  font-weight: 600;
}

.main-nav li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
  transition: width 0.3s ease;
}
.main-nav li:hover {
  color: #121212;
}
.main-nav li:hover::after {
  width: 100%;
}


.main-nav i {
  font-size: 10px;
  margin-left: 4px;
}

.main-header .icons {
  display: flex;
  gap: 20px;
  font-size: 18px;
  color: #333;
}
.main-header .icons span:hover{
  transform: scale(1.07);
}
.main-header .icons span{
  cursor: pointer;
}

.search-bar-wrapper {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 70px;
}

.search-bar-wrapper.show {
  display: flex;
}
.search-bar-wrapper.show input{
width: 50%;
padding: 15px;
color: rgb(var(--color-foreground));
font-size: 14px;

}
#closeSearch{
  border: none;
  background: #fff;
  cursor: pointer;
}

/*here*/
/* Hide menu by default */
.nav-menu {
  display: none;
  position: absolute;
  top: 109px; /* adjust based on header height */
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 999;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu ul li {
  margin-bottom: 15px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

/* Show menu when active */
.nav-menu.active {
  display: block;
}

/* Hamburger styling */
.header-icon.left {
  font-size: 24px;
  cursor: pointer;
}




/*home page starts*/
/* HERO SECTION SLIDER */
.hero-carousel .item {
  position: relative;
}

.hero-carousel img {
  width: 100%;
  height: 645px;
  object-fit: cover;
}
.hero-carousel .owl-nav{
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    right: 30px;
	justify-content: space-between;
    display: flex;
}
.owl-carousel .owl-nav button.owl-prev{
    background: #fff;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    height: 32px;
    width: 32px;
    border-radius: 50%;
}
.owl-carousel .owl-nav button.owl-next{
    background: #fff;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    height: 32px;
    width: 32px;
    border-radius: 50%;
}

/* CATEGORY SLIDER */
.popular-collections {
  text-align: center;
  padding: 40px 20px;
}

.popular-collections .section-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}

.popular-collections .collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.popular-collections .collection-item {
  height: 350px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.popular-collections .collection-item button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f89c1c;
  border: none;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 8px;
  cursor: pointer;
}
.popular-collections .collection-item button:hover{
  color: #fff;
  background-color: #000;
}

/* PRODUCTS SLIDER */
.top-products-slider {
  padding: 20px 20px;
  text-align: center;
}
.top-products-slider .owl-nav{
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
	justify-content: space-between;
    display: flex;
}
.top-products-slider .section-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}

.owl-carousel .product-card {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.top-products-slider .product-card img {
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.top-products-slider .product-card .stars {
    margin: 10px 0;
    color: #ffc107;
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.top-products-slider .product-card .stars span{
  color: #323232;
  font-weight:400;
}
.top-products-slider .product-card h3 {
  font-size: 1rem;
  margin: 10px 0;
  min-height: 48px; /* ensures text lines up */
  font-weight: 400;
}
.top-products-slider .product-card h3:hover{
  color: #f39918;
}
.top-products-slider .product-card .price {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
}

.top-products-slider .btn {
  background: #000;
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    height: 42px !important;
    width: 87% !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3%;
    line-height: 1.25em;
    min-height: 42px;
    margin-top: 17px;
}
.top-products-slider .btn:hover{
  background: #f39918;
  color: #000;
}


/* WHY CHOOSE HOUSZY SECTION */
.why-choose-houszy {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.why-choose-houszy h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 40px;
}

.why-choose-houszy .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 150px;
}

.why-choose-houszy .features .feature-box {
  max-width: 253px;
  text-align: center;
}

.why-choose-houszy .features .feature-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.why-choose-houszy .features .feature-box h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.why-choose-houszy .features .feature-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* TESTIMONIALS */
.testimonials {
  padding: 50px 20px;
  text-align: center;
}
.testimonials .owl-nav{
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
	justify-content: space-between;
    display: flex;
}
.testimonials  .testimonial-heading {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}

.testimonials  .testimonial-slider .testimonial-item {
  background: #efefef;
  border-radius: 30px;
  padding: 30px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials  .testimonial-text {
  margin: 20px 0;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

.testimonials  .testimonial-author {
  font-weight: bold;
  font-size: 18px;
}

.testimonials  .stars {
  font-size: 18px;
  color: #FFA500;
}


/*BLOG*/
.latest-blogs  .owl-nav {
    position: absolute;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    justify-content: space-between;
    display: flex;
}
.latest-blogs {
  padding: 50px;
  background: #fff;
  text-align: center;
}

.latest-blogs .section-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 40px;
}

.latest-blogs .blog-carousel .blog-item {
  background: #fff;
  text-align: left;
  padding: 20px;
  min-height: 400px;
}

.latest-blogs .blog-item img {
  width: 100%;
  height: 180px;
  object-fit: fill;
}

.latest-blogs .blog-item .date {
  font-size: 14px;
  color: #000;
  margin-top: 10px;
}

.latest-blogs .blog-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.latest-blogs .blog-item .excerpt {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.latest-blogs .blog-item .read-more {
  font-weight: bold;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.latest-blogs .blog-cta {
    text-align: left;
}

.latest-blogs .btn-cta {
  background: #f4a700;
  padding: 12px 30px;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
}



/* FOOTER */
.site-footer {
  background: #000;
  color: #fff;
  padding: 60px 30px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.site-footer .subscribe{
  width: 415px;
}
.site-footer .subscribe p{
  color: #a1a1a1;
}
.site-footer .subscribe h4{
  font-size: 35px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-link {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
}

.footer-col p {
  font-size: 14px;
  margin-bottom: 10px;
}

.subscribe-box {
  display: inline-flex;
  margin-top: 15px;
  background: #1a1a1a;
  border-radius: 30px;
  overflow: hidden;
  align-items: center;
}

.subscribe-box input {
  flex: 1;
  padding: 22px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
}

.subscribe-box button {
  color: #fff;
  background: #000;
  font-weight: 600;
  padding: 13px 18px;
  border: none;
  border-radius: 30px 30px 30px 30px;
  cursor: pointer;
  margin-right: 7px;
}

.social-icons {
  margin-top: 25px;
}

.social-icons a {
  display: inline-block;
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.payment-methods {
  margin-top: 30px;
  padding-bottom: 20px;
}

.payment-methods img {
  height: 30px;
  margin: 0 8px;
}
.site-footer .text-content{
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 14px;
}


/*search suggestions*/
 .main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    border-bottom: 1px solid #ddd;
  }

  .main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .main-nav li {
    cursor: pointer;
    font-size: 15px;
  }

  .icons {
    display: flex;
    gap: 20px;
    cursor: pointer;
    font-size: 24px;
  }

  /* Search bar hidden initially */
  .search-bar {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    position: relative;
    animation: slideDown 0.3s ease forwards;
  }
  .search-barmobile {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    position: relative;
    animation: slideDown 0.3s ease forwards;
  }

  .search-bar input {
    width: 50%;
    padding: 10px;
    border: 1px solid #333;
    font-size: 16px;
  }
.search-barmobile input {
    width: 50%;
    padding: 10px;
    border: 1px solid #333;
    font-size: 16px;
  }
  .close-btn {
    position: absolute;
    right: 25%;
    cursor: pointer;
    font-size: 22px;
    color: #333;
  }

  /* Slide down animation */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 15px;
  color: #666;
  padding: 15px;
}

.breadcrumb a {
  text-decoration: none;
  color: #666;
}
.breadcrumb span {
  text-decoration: none;
  color: #666;
}

/*product detail page start*/
/*product gallery*/
.productGallery {
      display: flex;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }
    /* LEFT PRODUCT IMAGES */
    /* --- PRODUCT GALLERY LAYOUT (fix) --- */
.productGallery .product-gallery{
  display:grid;
  grid-template-columns: 110px 1fr;   /* narrow thumbs column + main image */
  grid-template-areas: "thumbs main";
  align-items:start;
}

/* vertical thumbnail strip */
.productGallery .product-gallery .product-thumbnails{
  grid-area: thumbs;
  display:flex;
  flex-direction:column;
  gap:10px;
  width:110px;
}

.productGallery .product-gallery .product-thumbnails img{
  width:60%; /* square thumbs like the screenshot */
  object-fit:cover;
  border:1px solid #e5e5e5;
  border-radius:6px;
  cursor:pointer;
  transition:box-shadow .2s, border-color .2s, transform .12s;
  background:#f8f8f8;
}
.productGallery .product-gallery .product-thumbnails img:hover{
  border-color:#ff9900;
  box-shadow:0 0 0 2px rgba(255,153,0,.15) inset;
}
.productGallery .product-gallery .product-thumbnails img.active{
  border-color:#000;
}

/* big main image on the right */
.product-gallery .product-gallery-main{
  grid-area: main;
}
.product-gallery .product-gallery-main img{
  width:100%;
  height:auto;
  display:block;
  border:1px solid #e5e5e5;
  border-radius:8px;
  background:#fff;
}
/* RIGHT PRODUCT INFO */
   .productGallery .product-info {
      flex: 1.5;
    }
    .productGallery .product-info  .product-title {
      font-size: 25px;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .productGallery .product-info  .sku {
      font-size: 14px;
      color: #777;
      margin-bottom: 8px;
    }
    .productGallery .product-info  .reviews {
      color: #ff9900;
      font-size: 14px;
      margin-bottom: 20px;
    }
    .productGallery .product-info  .reviews span {
      color: #444;
    }

    .productGallery .product-info  .price {
      font-size: 22px;
      font-weight: bold;
      color: #d32f2f;
      margin-bottom: 10px;
    }
    .productGallery .product-info  .price del {
      font-size: 16px;
      color: #888;
      margin-right: 10px;
    }
    .productGallery .product-info  .discount {
      display: inline-block;
      background: #d32f2f;
      color: #fff;
      font-size: 13px;
      padding: 4px 10px;
      border-radius: 20px;
      margin-left: 10px;
    }
    .productGallery .product-info  .delivery {
      margin: 15px 0;
      font-size: 14px;
      font-weight: bold;
    }
    .productGallery .product-info  .colour {
      margin: 15px 0;
      font-size: 14px;
    }
    .productGallery .product-info  .colour-options button {
      border: 1px solid #ccc;
      padding: 6px 12px;
      margin-right: 6px;
      border-radius: 4px;
      cursor: pointer;
      background: #fff;
    }
    .productGallery .product-info  .colour-options .active {
      border: 2px solid #000;
      font-weight: bold;
    }
    .productGallery .product-info  .quantity {
      display: flex;
      align-items: center;
      margin: 20px 0;
    }
    .productGallery .product-info  .quantity button {
      width: 35px;
      height: 35px;
      border: 1px solid #ccc;
      background: #eee;
      cursor: pointer;
      font-size: 18px;
    }
    .productGallery .product-info  .quantity input {
      width: 50px;
      height: 35px;
      text-align: center;
      border: 1px solid #ccc;
      margin: 0 5px;
    }
    .productGallery .product-info  .quantity-buttons{
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .productGallery .product-info  .actions button {
      flex: 1;
      padding: 14px;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      cursor: pointer;
      font-size: 15px;
    }
    .productGallery .product-info  .add-cart {
      background: #000;
      color: #fff;
    }
    .productGallery .product-info  .buy-now {
      background: #f7a825;
      color: #000;
    }
	/* pair section*/
.productGallery .pair-section {
      border: 1px solid #eee;
      padding: 20px;
      background: #fafafa;
    }
    .productGallery .pair-section h3 {
      font-size: 15px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .productGallery .pair-section .pair-item {
      display: flex;
      gap: 15px;
      padding: 15px 0;
      border-bottom: 1px solid #eee;
    }
    .productGallery .pair-section .pair-item:last-child {
      border-bottom: none;
    }
    .productGallery .pair-section .pair-img {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
    }
    .productGallery .pair-section .pair-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 4px;
      border: 1px solid #ddd;
    }
    .productGallery .pair-section .pair-details {
      flex: 1;
    }
    .productGallery .pair-section .rating {
      color: #ff9900;
      font-size: 14px;
      margin-bottom: 6px;
    }
    .productGallery .pair-section .rating span {
      color: #444;
      font-size: 13px;
    }
    .productGallery .pair-section .pair-title {
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 6px;
    }
    .productGallery .pair-section .price {
      font-size: 14px;
      font-weight: bold;
      color: #000;
    }
    .productGallery .pair-section .price del {
      color: #888;
      margin-right: 8px;
    }
/*chekout banner*/
      .productGallery .product-info .checkout-banner {
      border-radius: 6px;
      background: #f7f7f7;
      padding: 15px;
      text-align: center;
      margin-bottom: 20px;
    }
    .productGallery .product-info .checkout-banner h3 {
      font-family: Georgia, serif;
      font-style: italic;
      font-weight: normal;
      font-size: 18px;
      margin-bottom: 12px;
    }
    .productGallery .product-info .payment-icons img {
      width: 100%;
      height: 28px;
      margin: 0 6px;
      vertical-align: middle;
    }


    /* tabs*/
     .productGallery .product-info .tabs {
      display: flex;
      gap: 20px;
      border-bottom: 1px solid #ddd;
      margin-bottom: 15px;
    }
    .productGallery .product-info .tabs button {
      background: none;
      border: none;
      font-weight: bold;
      padding: 10px 0;
      cursor: pointer;
      font-size: 16px;
      color: #444;
    }
    .productGallery .product-info .tabs button.active {
      border-bottom: 2px solid #000;
      color: #000;
    }

    /* Tab Content */
    .productGallery .product-info .tab-content {
      display: none;
      animation: fadeIn 0.3s ease-in-out;
    }
    .productGallery .product-info .tab-content.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* Product Info */
    .productGallery  .tab-content .product-infotab h4 {
      margin-bottom: 10px;
    }
    .productGallery  .tab-content .product-infotab ul {
      list-style: disc;
      padding-left: 20px;
      margin-bottom: 10px;
    }
    .tab-content .product-infotab .note {
      font-size: 13px;
      color: #555;
    }

    /* feature section */
    .features-section {
      background: #f5f5f5;
      padding: 60px 20px;
      /* only top-left & bottom-right cuts */
      clip-path: polygon(4% 0, 100% 0, 100% 96%, 96% 100%, 0 100%, 0 4%);
    }

    .features-section .features-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      text-align: center;
    }

    .features-section .features-container .feature-box {
      padding: 20px;
    }

    .features-section .features-container .feature-box img {
      width: 45px;
      height: 45px;
      margin-bottom: 15px;
      filter: invert(64%) sepia(72%) saturate(597%) hue-rotate(11deg) brightness(96%) contrast(95%);
      /* makes icons orange-like */
    }

    .features-section .features-container .feature-box h3 {
      font-size: 20px;
      margin-bottom: 12px;
      font-weight: bold;
    }

    .features-section .features-container .feature-box p {
      font-size: 15px;
      line-height: 1.6;
      color: #444;
    }
	/* A plus */
    .apluscontentContainer .aplus-image{
      display: flex;
      justify-content: center;
      margin-top: 80px;
    }
    .apluscontentContainer .aplus-content{
      margin-top: 80px;
    }
    .apluscontentContainer .aplus-content p{
      text-align: center;
    }
    .apluscontentContainer .contentDetail{
      margin-top: 80px;
    }
    .apluscontentContainer .contentDetailRow{
      width: 80%;
      margin: 0 auto;
    }
    .apluscontentContainer .imagecolumn img{
      height: 445px;
      width: 445px;
    }
    .apluscontentContainer .contentcolumn h3{
    font-weight: 500;
    font-size: 38px;
    line-height: 1.15em;
    letter-spacing: 0px
    }
/* faq */
    .faq-section {
      max-width: 900px;
      margin: 60px auto;
      padding: 20px;
    }

    .faq-section h2 {
      text-align: center;
      font-size: 28px;
      font-weight: 900;
      margin-bottom: 30px;
    }

    .faq-section .faq-item {
      border: 1px solid #ddd;
      margin-bottom: 10px;
      border-radius: 4px;
      overflow: hidden;
    }

    .faq-section .faq-question {
      width: 100%;
      background: #fff;
      border: none;
      outline: none;
      padding: 18px 20px;
      text-align: left;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-section .faq-question:hover {
      background: #f9f9f9;
    }

    .faq-section .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: #fff;
      padding: 0 20px;
      font-size: 16px;
      color: #333;
    }

    .faq-section .faq-item.active .faq-answer {
      max-height: 200px;
      padding: 15px 20px;
    }

    .faq-section .arrow {
      transition: transform 0.3s ease;
    }

    .faq-section .faq-item.active .arrow {
      transform: rotate(180deg);
    }

/* top selling */
 .product-section {
      text-align: center;
      padding: 40px 20px;
    }

    .product-section h2 {
      font-size: 30px;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .product-section  .carousel {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      overflow: hidden;
      margin-top: 20px;
      background-color: #fff;
      border-radius: 24px;
    padding: 32px;
    }

   .product-section  .product-card {
      width: 331.75px;
      margin-right: 30px;
      background: #fff;
      padding: 15px;
      text-align: center;
      position: relative;
    }

    .product-section .product-card img {
      max-width: 100%;
      height: auto;
      border-radius: 6px;
    }

    .product-section  .discount {
      background: red;
      color: #fff;
      font-size: 14px;
      font-weight: bold;
      padding: 4px 8px;
      border-radius: 20px;
    }

    .product-section  .product-card .product-title {
      font-size: 16px;
      font-weight: bold;
      margin: 15px 0 10px;
    }

    .product-section  .old-price {
      text-decoration: line-through;
      color: #aaa;
      font-size: 14px;
    }

    .product-section  .price {
      font-size: 18px;
      font-weight: bold;
      margin: 5px 0;
    }

    .product-section .order-btn {
      display: inline-block;
      background: #ff7d00;
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      font-size: 16px;
      line-height: 1.25em;
      border-style: none;
    border-radius: 30px;
    padding: 6px 16px;
    margin-top: 14px;
    }

    /* Carousel buttons */
    .product-section .carousel-controls {
      margin-top: 20px;
    }

    .product-section .carousel-controls button {
      background: orange;
      border: none;
      color: #fff;
      padding: 10px 15px;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      margin: 0 5px;
    }

    .product-section .carousel-controls button:hover {
      background: darkorange;
    }
    .product-section .product-section{
      background-color: #f6f6f6;
    }
/* reviews*/
.reviews-section {
      padding: 20px;
    }

    .reviews-section .reviews-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
    }

    .reviews-section .rating-summary {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .reviews-section .rating-score {
      font-size: 2.5rem;
      font-weight: bold;
    }

    .reviews-section .stars {
      color: orange;
      font-size: 1.2rem;
    }

    .reviews-section .total-reviews {
      font-size: 14px;
      color: #666;
    }

    .reviews-section .rating-breakdown {
      font-size: 14px;
      color: #333;
      width: 25%;
    }

    .reviews-section .rating-bar {
      display: flex;
      align-items: center;
      margin: 5px 0;
    }

    .reviews-section .rating-bar span {
      width: 50px;
      font-size: 14px;
    }

    .reviews-section .bar {
      flex: 1;
      background: #ddd;
      height: 8px;
      border-radius: 4px;
      margin: 0 10px;
      position: relative;
      overflow: hidden;
    }

    .reviews-section .fill {
      background: orange;
      height: 100%;
      border-radius: 4px;
    }

    .reviews-section .bar-count {
      width: 20px;
      text-align: right;
    }

    .reviews-section .review {
      border-top: 1px solid #eee;
      padding: 20px 20px;
    }

    .reviews-section .review h4 {
      margin: 0;
      font-size: 16px;
      font-weight: bold;
    }

    .reviews-section .verified {
      font-size: 13px;
      color: #333;
      margin: 5px 0;
    }

    .reviews-section .verified::before {
      content: "✔ ";
      color: black;
    }

    .reviews-section .review-text {
      font-size: 14px;
      margin: 10px 0;
    }

    .reviews-section .response {
      background: #f5f5f5;
      padding: 10px;
      border-radius: 4px;
      font-size: 14px;
      margin-top: 10px;
    }
    .product .entry-summary .sku{
    color: #121212BF !important;
    font-size: 15px;
    font-family: Lato, sans-serif !important;
    }
    .product .entry-summary .price{
      display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    }
    .product .entry-summary .price del{
      color: #777;
    margin-top: 2px;
    margin-right: 0;
    margin-left: 0;
    font-size: 18px;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    line-height: 1em;
    }
    .product .entry-summary .price ins{
      color: #f39918;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    }
    .product .entry-summary .price .discount{
      color: #fff;
    padding: 5px 13px;
    margin-left: 12px;
    background-color: #ec0101;
    border-radius: 30px;
    overflow: hidden;
    }
    .product .entry-summary .delivery{
          font-size: 14px;
    font-weight: 600;
    line-height: 1.2em;
    text-decoration: none;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0px;
    font-family: Outfit, sans-serif;
    }
    .product .entry-summary .single_add_to_cart_button{
      justify-content: center;
    font-weight: 700;
    letter-spacing: 0px;
    font-style: normal;
    font-size: 14px;
    line-height: 1.25em;
    font-family: Jost, sans-serif;
    text-transform: uppercase;
    width: 21%;
    height: 45px;
    min-height: 45px;
    color: #fff !important;
    background-color: #0a0a0a !important;
    border-style: none;
    border-radius: 3px;
    padding: 12.5px 0;
    margin-top: 0;
    margin-left: 0;
    }
    .product .entry-summary .buy-now {
       justify-content: center;
    font-weight: 700;
    letter-spacing: 0px;
    font-style: normal;
    font-size: 14px;
    line-height: 1.25em;
    font-family: Jost, sans-serif;
    text-transform: uppercase;
    width: 21%;
    height: 45px;
    min-height: 45px;
    color: #fff;
    border-style: none;
    border-radius: 3px;
    padding: 12.5px 0;
    margin-top: 0;
    margin-left: 0;
      background-color: #f7ae4a;
    }
    .product .entry-summary .checkout-banner{
      margin-top: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f5f5f5;
    padding: 20px 0;
    }
    .product .entry-summary .checkout-banner h3{
    font-size: 16px;
    line-height: 1.25em;
    letter-spacing: 0px;
    font-family: Libre Baskerville, sans-serif;
    }
    .product .entry-summary .checkout-banner .payment-icons{
      text-align: center;
    }
    .product .entry-summary .checkout-banner .payment-icons img{
      max-width: 70% !important;
    }
    .woocommerce div.product .product_title{
      font-size: 25px;
    line-height: 1.35em;
    font-weight: 600;
    text-decoration: none;
    font-family: Jost, sans-serif;
    letter-spacing: 0px;
    }
    .product .containermain{
      display: flex;
    }
    .product .productGallery{
      display: flex;
      flex-direction: column;
    }
    .woocommerce-page div.product div.summary {
    float: right;
    width: 82% !important;
    clear: none;
}
.woocommerce div.product {
    padding-top: 40px !important;
}
.product .custom-product-sections{
  padding-top: 45px !important;
}
.woocommerce-breadcrumb{
  padding: 20px !important;
}
.entry-summary h1, .entry-summary .sku, .entry-summary .price, .entry-summary .delivery, .entry-summary .cart .entry-summary .checkout-banner, .entry-summary .links, .entry-summary .tabs, .entry-summary .details{
  margin-bottom: 10px !important;
}
.entry-summary .tabs{
  border-bottom: 1px solid #EBEBEB;
}
.entry-summary .tab-btn.active {
    background-color: #fff !important;
    color: black !important;
    border: 0 !important;
    border-bottom: 3px solid #000000 !important;
}
.entry-summary .tabs .tab-btn {
    margin-right: 10px;
    padding: 6px 12px;
    cursor: pointer;
    border: 0 !important;
    background-color: #fff !important;
}
.entry-summary .tabs .tab-btn:hover{
   border-bottom: 3px solid #000000 !important;
}
.relatedProducts .woocommerce-loop-product__title{
  font-size: 15px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}
.relatedProducts .star-rating{
  float: none !important;
}
.relatedProducts {
  text-align: center;
}
.relatedProducts .price{
  float: left;
}
.relatedProducts .product_type_simple{
  float: right;
      align-self: flex-end !important;
    text-transform: capitalize !important;
    text-decoration: none !important;
    font-family: Montserrat, sans-serif !important;
    font-weight: 500 !important;
    line-height: 1.25em !important;
    letter-spacing: 0px !important;
    color: #fff !important;
    background-color: #ff7d00 !important;
    border-style: none !important;
    border-radius: 30px !important;
    font-size: 14px !important;
        height: 40px !important;
        min-height: 40px !important;
        padding-right: 20px !important;
        padding-left: 20px !important;
}
.entry-summary .colour-options button{
      border: 1px solid #ddd;
    padding: 6px 12px;
    margin: 3px;
    background: #fff;
    cursor: pointer;
    border-radius: 6px;
}
/*product detail page end*/

/*category page starts*/
/* CATEGORY */
.sidebar{
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
}
.sidebar h4 {
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  position: relative;
}

.sidebar h4::after {
  content: "+";
  font-size: 16px;
  position: absolute;
  right: 0;
}

.sidebar.open h4::after {
  content: "−";
}
.sidebar li {
  list-style: none;
  margin: 5px 0;
}

.sidebar li a {
  text-decoration: none;
  color: black;
}

.sidebar li a:hover {
  text-decoration: underline;
}

/* Initially hidden content */
.sidebar ul,
.sidebar li {
  display: none;
}

/* Show list when open */
.sidebar.open li {
  display: list-item;
}
 .cat-container {
      display: flex;
      margin: 40px auto;
      gap: 40px;
      padding: 0 20px;
    }

     .cat-container .sidebar {
      flex: 1;
      max-width: 320px;
    }

     .cat-container .sidebar h4 {
      letter-spacing: 1px;
      font-size: 14px;
      margin-bottom: 15px;
      border-bottom: 1px solid #eee;
      padding-bottom: 5px;
      font-weight: 400;
    }

     .cat-container .sidebar section {
      margin-bottom: 30px;
    }

     .cat-container .main-content {
      flex: 3;
    }

     .cat-container .main-content h1 {
      font-size: 28px;
      margin-bottom: 10px;
      font-weight: 400;
    }

    .main-content .filter-bar {
      display: flex;
      justify-content: space-between;
    }
    
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    float: left;
    margin: 0 3.8% 2.992em 0;
    padding: 0;
    position: relative;
    width: 20%;
    margin-left: 0;
    text-align: center;
}

    .main-content .product img {
      max-width: 100%;
      object-fit: contain;
    }

    .main-content .sold-out {
      position: absolute;
      top: 10px;
      left: 10px;
      align-self: flex-start;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25em;
    color: #fff;
    background-color: #eb0e0e;
    border-radius: 5px;
    padding: 4px 11px;
    margin-bottom: 5px;
    }

    .main-content .stars {
      color: orange;
      font-size: 14px;
      margin: 10px 0 5px;
    }

    .main-content .product-title {
      font-size: 16px;
      margin: 10px 0;
      height: 40px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      color: #000;
      font-weight: 500;
    }

    .woocommerce ul.products li.product .price {
    display: block;
    color: #000;
    margin-bottom: 7px;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25em;
}
.woocommerce ul.products li.product .price ins span bdi{
  color: #da211f !important;
}
    .main-content .button {
    align-self: center !important;
    font-family: Jost, sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    color: #fff !important;
    background-color: #000 !important;
    border-style: none !important;
    border-radius: 5px !important;
    padding: 11px 25px !important;
    margin: 5px 0 25px !important;
    }
    .main-content .button:hover{
      background-color: #f39918 !important;
    }

    .main-content .button.sold {
      background: red;
      color: white;
      align-self: center;
    height: 40px;
    min-height: 40px;
    color: #fff;
    background-color: #ed2711;
    border-radius: 5px;
    margin: 5px 0 25px;
    padding: 5px 25px;
    }

    .main-content .button.cart {
      align-self: center;
    font-family: Jost, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    height: 40px;
    min-height: 40px;
    color: #fff;
    background-color: #000;
    border-style: none;
    border-radius: 5px;
    padding: 8px 25px;
    margin: 5px 0 25px;
    }

    .main-content .filter-bar select{
    height: fit-content;
    padding: 7px;
    border-color: #eaeaea;
    }
    .products .woocommerce-loop-product__title{
      font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    color: #000;
    --ecom-webkit-line-clamp: 2;
    margin: 10px 0;
    padding: 0;

     display: -webkit-box;           /* needed for line-clamp */
  -webkit-box-orient: vertical;   /* needed for line-clamp */
  -webkit-line-clamp: 2;          /* <-- limit to 2 lines */
  overflow: hidden;               /* hide overflow */
  text-overflow: ellipsis;        /* show "..." when truncated */
  max-height: calc(1.3em * 2);    /* optional: prevents large fonts breaking layout */
  white-space: normal;  
    }

    .products .woocommerce-loop-product__title:hover{
color: #f39918;
    }
    .woocommerce .star-rating span::before{
    content: "SSSSS";
    top: 0;
    position: absolute;
    left: 0;
    color: #ffa800 !important;
    }

    .woocommerce span.onsale{
    align-self: flex-start !important;
    font-family: Rubik, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.25em !important;
    color: #fff !important;
    background-color: #e6160b !important;
    border-radius: 5px !important;
    padding: 4px 11px !important;
    margin-top: 0 !important;
    margin-bottom: 5px !important;
    position: absolute !important;
    min-height: 0px !important;
    min-width: 0px !important;
    left: 0 !important;
    right: auto !important;
    }

    .woocommerce .products .star-rating{
      margin: 0 auto !important;
    }

    .woocommerce .woocommerce-ordering select {
    vertical-align: top !important;
    font-size: 14px !important;
    font-family: Jost, sans-serif !important;
    line-height: 35px !important;
    border-style: solid !important;
    border-width: 1px !important;
    border-color: #eaeaea !important;
    padding-right: 14px !important;
    padding-left: 14px !important;
    padding-top: 7px !important;
    padding-bottom: 7px !important;
}
/*category page ends*/

/*blog listing page starts*/
.category1blog{
  margin: 20px;
}
 .category1blog .blog-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .category1blog .blog-container  .card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
    }

    .category1blog .blog-container  .card img {
      width: 100%;
    }

    .category1blog .blog-container  .card-content {
      padding: 15px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .category1blog .blog-container  .card h3 {
      font-size: 18px;
      margin: 0;
      line-height: 1.4;
    }

    .category1blog .blog-container  .card small {
      color: #777;
      font-size: 14px;
    }

    .category1blog .blog-container .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .category1blog .blog-container  .tag {
      background: #f1f1f1;
      border-radius: 20px;
      padding: 4px 10px;
      font-size: 12px;
      color: #444;
    }

    .category1blog .blog-container  .read-more {
      font-size: 14px;
      color: #ff9800;
      font-weight: bold;
      cursor: pointer;
    }

    .category1blog   .load-more {
      margin-top: 30px;
    }

    .category1blog  .load-more button {
      background: #ff9800;
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 6px;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .category1blog  .load-more button:hover {
      background: #e68a00;
    }
    .blogcategories ul{
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
    padding: 15px;
    font-weight: 500;
    cursor: pointer;
    }
    .category1blog .category1blog{
      padding: 25px;
    }
/*blog listing page ends*/

/*blog page starts*/
/* Left Content */
    .contenttags{
      flex: 3;
    }

    .contenttags .tags {
      margin-bottom: 10px;
    }

    .contenttags .tags span {
      background: #f0f0f0;
      padding: 6px 12px;
      border-radius: 15px;
      margin-right: 6px;
      font-size: 14px;
      cursor: pointer;
    }

    .blogcontainermain .rightblogcontainer h1 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .blogcontainermain .rightblogcontainer .meta {
      font-size: 14px;
      color: #666;
      margin-bottom: 15px;
    }

    .blogcontainermain .rightblogcontainer .featured-img {
      width: 100%;
      border-radius: 8px;
    }

    /* Sidebar */
    .blogcontainermain .leftblogcontainer.sidebar {
      flex: 1;
      background: #fafafa;
      padding: 15px;
      border-radius: 10px;
      border: 1px solid #eee;
    }

    .blogcontainermain .leftblogcontainer .sidebar h3 {
      margin-bottom: 15px;
      font-size: 18px;
    }

    .blogcontainermain .leftblogcontainer .article {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .blogcontainermain .leftblogcontainer .article img {
      width: 60px;
      height: 40px;
      object-fit: cover;
      border-radius: 6px;
      margin-right: 10px;
    }

    .blogcontainermain .leftblogcontainer .article div {
      font-size: 14px;
    }

    .blogcontainermain .leftblogcontainer .article div small {
      color: #666;
      display: block;
    }
    .blogcontainermai .rightblogcontainer h1{
        font-size: 24px;
    }
/*blog page ends*/

/* suggestion page styles */
 .search-header {
      text-align: center;
      margin-bottom: 20px;
    }

    .search-header h2 {
      margin-bottom: 10px;
    }

    .search-header .search-bar input {
      width: 300px;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .search-header .search-bar button {
      padding: 8px 12px;
      border: none;
      color: #fff;
      border-radius: 4px;
      cursor: pointer;
      background-color: #000;
    }

    .search-header .results-count {
      margin: 20px 0;
      font-size: 14px;
    }

     .results-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 20px;
    }

    .results-grid .card {
      border: 1px solid #eee;
      border-radius: 6px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    .results-grid .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .results-grid .card-content {
      padding: 12px;
    }

    .results-grid .price {
      margin-top: 6px;
      font-size: 16px;
      font-weight: bold;
      color: #111;
    }

    .results-grid .old-price {
      text-decoration: line-through;
      color: #888;
      margin-right: 5px;
    }

    .results-grid .tag {
      display: inline-block;
      background: #333;
      color: #fff;
      font-size: 12px;
      padding: 3px 8px;
      border-radius: 12px;
      margin-bottom: 8px;
    }

    .results-grid .blog-date {
      font-size: 12px;
      color: #666;
      margin-top: 6px;
    }
/* suggestion page end */	

/* DESKTOP STYLES */
@media (min-width: 767px){
.mobile-header{
  display: none;
}
.mobilehero-carousel{
  display: none !important;
}
.mobilepopular-collections{
  display: none;
}
.why-choose{
  display: none;
}
.pair-section-mobile{
  display: none !important;
}
}
@media screen and (min-width:577px){
  .apluscontentContainer .aplus-imagemobile{
    display: none;
  }
}

/* MOBILE STYLES */
@media (max-width: 767px) {
   .payment-methods img {
    width: 320px !important;
}
  .site-footer .subscribe {
    width: 345px;
  }
  .why-choose-houszy{
    display: none;
  }
  .section-title{
    margin-bottom: 0px;
  }
  .popular-collections .collection-item button {
    bottom: 70px;
  }
  .section-title{
    font-size: 25px;
  }
  .why-choose-houszy h2{
    font-size: 25px;
  }
  .testimonial-heading{
    font-size: 25px;
  }
  .desktoppopular-collections{
    display: none;
  }
  .hero-carousel{
    display:none !important;
  }
  .mobilehero-carousel .item {
  position: relative;
}

.mobilehero-carousel img {
  width: 100%;
  object-fit: cover;
}
.mobilehero-carousel .owl-nav{
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
	justify-content: space-between;
    display: flex;
}
  .desktop-header{
    display: none !important;
  }
  .mobile-header {
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }

  .header-icon {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header-icon i {
    font-size: 20px;
    color: #000;
    cursor: pointer;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-header .logo img {
    height: 60px;
    object-fit: contain;
  }
  .mobilecollection-grid .owl-nav{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        justify-content: space-between;
        display: flex;
    }

    /* why choose mobile */
.why-choose {
  text-align: center;
  padding: 40px 15px;
}

.why-choose .section-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

/* Container to clip overflow */
.why-slider-container {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Flex slider */
.why-choose .why-slider {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
}

/* Card styles */
.why-choose .why-box {
  flex: 0 0 60%;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.why-choose .why-box img {
  margin-bottom: 10px;
}

.why-choose .why-box h3 {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0 6px;
}

.why-choose.why-box p {
  font-size: 13px;
  color: #444;
}

/* Progress bar */
.why-choose .progress-bar {
  height: 2px;
  background: #ccc;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.latest-blogs .blog-cta {
    text-align: center;
}

}

/*product detail page mobile starts*/
@media (max-width: 640px){
  .productGallery .product-gallery{
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "thumbs";
  }
 .productGallery .product-thumbnails{
    flex-direction:row;
    width:auto;
  }
 .productGallery .product-thumbnails img{
    width:72px;
    height:72px;
  }
  .woocommerce div.product .product_title{
        font-size: 20px;
        font-weight: 600;
        font-family: Jost, sans-serif;
  }
  .product .entry-summary .checkout-banner {
    margin-top: 99px;}
  .entry-summary .single_add_to_cart_button{
    font-size: 14px !important;
    height: 45px;
    min-height: 45px;
    border-radius: 3px;
    padding-right: 15px;
    padding-left: 15px;
    width: 78% !important;
  }
  .entry-summary .buy-now{
    width: 100% !important;
  }
  .features-section .features-container{
    display:  block !important;
  }
  .apluscontentContainer .aplus-content {
    margin-top: 20px;
}
.apluscontentContainer .contentcolumn h3{
  font-size: 28px;
}
.apluscontentContainer{
  text-align: center;
}
.woocommerce .woocommerce-breadcrumb{
  display: none;
}
.woocommerce-page div.product div.summary {
    width: auto !important;
}
.faq-section .faq-question {
    font-size: 16px !important;
    font-weight: 500 !important;
}
 .pair-section-mobile{
      border: 1px solid #eee;
      padding: 20px;
      background: #fafafa;
    } 
.pair-section-mobile h3 {
      font-size: 15px;
      font-weight: bold;
      margin-bottom: 20px;
    }
 .pair-section-mobile .pair-item {
      display: flex;
      gap: 15px;
      padding: 15px 0;
      border-bottom: 1px solid #eee;
    }
 .pair-section-mobile .pair-item:last-child {
      border-bottom: none;
    }
    .pair-section-mobile .pair-img {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
    }
   .pair-section-mobile .pair-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 4px;
      border: 1px solid #ddd;
    }
   .pair-section-mobile .pair-details {
      flex: 1;
    }
  .pair-section-mobile .rating {
      color: #ff9900;
      font-size: 14px;
      margin-bottom: 6px;
    }
    .pair-section-mobile .rating span {
      color: #444;
      font-size: 13px;
    }
   .pair-section-mobile .pair-title {
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 6px;
    }
   .pair-section-mobile .price {
      font-size: 14px;
      font-weight: bold;
      color: #000;
    }
     .pair-section-mobile .price del {
      color: #888;
      margin-right: 8px;
    }
    .productGallery .pair-section{
      display: none !important;
    }
    .reviews-section .reviews-header {
    display: block !important;
}
  }
/*category page mobile starts*/
@media (max-width: 767px) {
  .main-content .product-title {
    font-size: 16px;
    margin: 10px 15px;
  } 
  .cat-container {
    display: grid;
    margin-top: 10px;
    gap: 40px;
    padding: 0 20px;
}
.main-content .filter-bar {
  display: flex;
  align-items: center;
}
.main-content .filter-bar h1{
  display: none;
}
.main-content .product {
    width: 100%;
    padding: 10px;
    text-align: center;
    position: relative;
}
    .desktop-header{
    display: none;
  }
  .mobile-header {
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }

  .header-icon {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header-icon i {
    font-size: 20px;
    color: #000;
    cursor: pointer;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-header .logo img {
    height: 60px;
    object-fit: contain;
  }
  .cat-container .sidebar{
    display: none;
  }
}
@media screen and (max-width:576px){
      /*apluse images*/
      .apluscontentContainer .aplus-imagedesktop{
        display: none;
      }
      .apluscontentContainer .aplus-image .aplus-imagemobile{
        width: 280px;
      }
      .apluscontentContainer .aplus-image {
    margin-top: 30px;
  }
   .apluscontentContainer .contentDetail .aplus-imagemobile{
width: 245px;
height: 245px;
  }
  .faq-question{
    font-size: 14px;
  }
  .faq-section h2 {
    font-size: 16px;
    margin-bottom: 5px;
}
.product-section h2 {
    font-size: 25px;
}
.site-footer .subscribe h4 {
    font-size: 16px;
}
.breadcrumb{
  display: none;
}
    }
	 @media (max-width: 900px) {
      .features-container {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }
/*product detail page mobile ends*/

/*category page mobile starts*/
@media (max-width: 767px) {
  .main-content .product-title {
    font-size: 16px;
    margin: 10px 15px;
  } 
.woocommerce .woocommerce-ordering select{
  padding-right: 0px !important;
}
.main-content .filter-bar {
  display: flex;
  align-items: center;
}
.main-content .products {
    display: block;
}
.filter-bar h1{
  display: none;
}
.main-content .product {
    width: 100%;
    padding: 10px;
    text-align: center;
    position: relative;
}
    .desktop-header{
    display: none;
  }
  .mobile-header {
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }

  .header-icon {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header-icon i {
    font-size: 20px;
    color: #000;
    cursor: pointer;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-header .logo img {
    height: 60px;
    object-fit: contain;
  }
  .cat-container .sidebar{
    display: none;
  }
}
/*category page mobile ends*/

/*blog listing page mobile starts*/
@media (max-width: 767px){
  .desktop-header{
    display: none;
  }
  .mobile-header {
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }

  .header-icon {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header-icon i {
    font-size: 20px;
    color: #000;
    cursor: pointer;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-header .logo img {
    height: 60px;
    object-fit: contain;
  }
  .site-footer .subscribe {
    width: 345px;
  }
  .subscribe-box button{
  font-size: 11px !important;
}
}
/*blog listing page mobile ends*/


/*blog page mobile starts*/
@media(max-width: 900px) {
      .container {
        flex-direction: column;
      }
    }

    /*prev post style*/
     .prev-post {
      border-top: 1px solid #ddd;
      padding-top: 20px;
      margin-top: 30px;
    }

    .prev-post h3 {
      font-size: 18px;
      margin-bottom: 15px;
    }

    .post-item {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .post-item img {
      width: 120px;
      height: 80px;
      object-fit: cover;
      border-radius: 6px;
    }

    .post-details {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .post-details a {
      font-size: 16px;
      font-weight: bold;
      text-decoration: none;
      color: #000;
      margin-bottom: 5px;
    }

    .post-details a:hover {
      color: #0073e6;
    }

    .post-meta {
      font-size: 14px;
      color: #555;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .post-meta i {
      font-style: normal; /* Using emoji instead of icon font */
    }
/*blog page mobile ends*/





.RelatedProduct {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
}

.RelatedProduct h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 600;
  color: #333;
}
/* Owl Navigation Dots/Arrows */
.owl-carousel {
    display: block !important;
    width: 100%;
    z-index: 1;
}
.owl-nav button {
  background: #ddd !important;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}

.owl-nav .owl-prev {
  left: -15px;
}

.owl-nav .owl-next {
  right: -15px;
}

.owl-dots {
  margin-top: 20px;
}

/* cart page */
.entry-header h1{
  text-align: center;
      font-weight: 400;
    font-size: 50px;
    line-height: 1.4em;
    letter-spacing: 0px;
    font-family: Jost, sans-serif;
    padding-top: 40px;
}
.wc-block-cart-items__row .wc-block-components-product-name{
  display: block;
    line-height: 1.4;
    max-width: max-content;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}
.wc-block-cart-items__row .wc-block-cart-item__wrap{
  display: flex;
  gap: 20px;
}
.wc-block-components-product-badge {
    border: 1px solid red !important;
    border-radius: 4px;
    display: inline-block;
    font-size: .75em;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    height: 21px;
    background-color: red;
    color: #fff;
    line-height: 2px;
    padding: 10px !important;
}
.wc-block-components-sidebar  .wc-block-cart__submit-button{
      justify-content: center;
    font-size: 16px;
    font-family: Jost, sans-serif;
    font-weight: 500;
    line-height: 1.4em;
    width: 100%;
    height: 48px;
    min-height: 48px;
    color: #fff;
    background-color: #000;
    border-radius: 0;
    padding: 10px;
}
.wc-block-components-totals-coupon__content .wc-block-components-button{
  background-color: #000;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 767px) {
  .wc-block-cart-items__row .wc-block-cart-item__wrap {
    display: block !important;
}
.entry-header h1{
  font-size: 25px !important;
}
}