/*

Theme Name: My Blank Theme

Theme URI: http://example.com/

Author: Your Name

Author URI: http://example.com/

Description: A blank WordPress theme for custom development

Version: 1.0

*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

*{
  margin: 0;
  /* padding: 0; */
  /* box-sizing: border-box; */
}

body {
 font-family: 'Roboto', sans-serif;
}



/* Base menu item */
.menu-item {
  position: relative;
}

/* Link styling */
.menu-item > a {
  text-decoration: none;
  color: #333;
  padding: 10px 20px;
  display: block;
}

/* Sub-menu styling */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #eee;
  z-index: 999;
  width: 900px;
  min-height: 400px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
#subcategory-image {
  transition: opacity 0.3s ease-in-out;
}
/* Mega menu content */
.menu-content {
  display: flex;
  gap: 20px;
}


.left-column {
  flex: 1;
  border-right: 1px solid #b1a6a6;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  flex-direction: column; /* Make sure items stack vertically */
}

.right-column {
  flex: 1;
  padding-left: 10px;
}

.image-column {
  flex: 1.2;
  padding: 20px 0px;
}
.abb{
  padding: 6px 0px;
 
}
/* Category list styling to match image */
.left-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; /* Ensure list items stack vertically */
  width: 100%;
}

.left-column ul li {
  position: relative;
  padding: 8px 0 8px 20px;
  margin-bottom: 5px;
  display: block; /* Ensure list items take full width */
  width: 100%;
}


.left-column a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  font-size: 16px;
  display: block; /* Make links block-level elements */
  width: 100%;
}
.left-column h4{
  margin: 10px 0px;
}
.right-column h4{
  margin: 10px 0px;
}
/* Subcategory styling */
.right-column a {
  color: #777;
  text-decoration: none;
  font-size: 15px;
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid #757474;
  transition: color 0.2s;
}



/* Show on hover */
.menu-item:hover .sub-menu {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

/* Smooth fade-in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image styling */
#subcategory-image {
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: scale(1);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#subcategory-image.show {
  opacity: 1;
  transform: scale(1.02);
}

/* Header text for Find By Category */
.category-header {
  font-size: 18px;
  font-weight: 500;
  color: #76b82a;
  margin-bottom: 15px;
  padding-bottom: 5px;
}


/* Add media queries for responsiveness */
@media screen and (min-width: 1024px) and (max-width: 1650px) {
  .sub-menu {
    width:700px;
  }
 
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .sub-menu {
    width:400px;
  }
  .image-column img {
    display: none;
   }
}
@media (max-width: 1024px) {
  .sub-menu {
    width: 650px;
    left: -50px;
  }
  
  .menu-content {
    gap: 15px;
  }
  
  .image-column img {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .sub-menu {
    width: 500px;
    position: static;
    box-shadow: none;
    border: none;
    padding: 10px;
  }
  
  .menu-content {
    flex-direction: column;
  }
	
	.menu-item {
		border-bottom: 1px solid #F36F21; 
	}
	.nav-link{
		border-bottom: 1px solid #F36F21; 
	}
  .left-column {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  
  .image-column {
    display: none; /* Hide image on mobile */
  }
	.sub-menu {
		display: none !important;
	}
}

@media (max-width: 480px) {
  .sub-menu {
    padding: 5px;
  }
  
  .left-column ul li {
    padding: 5px 0 5px 15px;
  }
  
  .left-column ul li::before {
    font-size: 10px;
  }
  
  .left-column a, 
  .right-column a {
    font-size: 14px;
  }
}

/* --- Styles for the new "Media" Dropdown --- */


.media-dropdown {
  position: relative;
}


.media-dropdown .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  width: 240px; 
  min-height: auto; 
  padding: 8px 0; 
  z-index: 1000;
  list-style: none; 
}


.media-dropdown:hover .sub-menu {
  display: block;
}


.media-dropdown .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  color: #333; 
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease-in-out;
}


.media-dropdown .sub-menu li a:hover {
  color: #f36f21; 
  background-color: transparent; 
}


@media (max-width: 768px) {
  .media-dropdown .sub-menu {
    position: static; 
    box-shadow: none;
    border: none;
    padding: 10px 0 10px 20px;
    width: 100%;
  }

  .media-dropdown .sub-menu li a {
    border-bottom: none; 
  }
}

/* --- START: CSS for Mobile-Only Media Dropdown --- */


@media (min-width: 769px) {
  .media-dropdown .sub-menu {
/*     display: none !important;  */
  }
}


@media (max-width: 768px) {
  .media-dropdown .sub-menu {
    display: block !important; 
    position: static;      
    width: 100%;           
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 5px 0 10px 20px;
    min-height: 0;        
  }
  

  .media-dropdown .sub-menu .menu-content {
    display: block;
  }

  .media-dropdown .sub-menu li a {
    padding: 8px 0;      
    font-size: 18px;    
    font-weight: normal; 
    border-bottom: none;  
  }
}

/* --- END: CSS for Mobile-Only Media Dropdown --- */




.nav-item-products { 
  position: relative;
}

.custom-has-dropdown::after {
  content: '';
  position: absolute;
  height: 22px; /* Match your margin-top value */
  width: 100%;
  bottom: -22px;
  left: 0;
}

.custom-has-dropdown:hover .dropdown-products-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-top: 22px;
  transition: 
  opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
  transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
  visibility 0s linear 0s;
}

.dropdown-products-wrapper {
  display: flex;
  gap: 30px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 850px;
  background-color: #ffffffa3;
  border-radius: 8px;
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.1);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 
    opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0s linear 0.3s; /* Delay hiding until fade completes */
  z-index: 100;
}

.dropdown-products-left,
.dropdown-products-middle,
.dropdown-products-right {
  flex: 1;
}

.dropdown-products-left,
.dropdown-products-middle {
  display: flex;
  flex-direction: column;
}

.dropdown-products-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdown-products-category-list,
.dropdown-products-subcategory-list {
  list-style: none;
  margin:  0px;
  padding: 0;
  font-size: 18px;
}

.dropdown-products-category-list li,
.dropdown-products-subcategory-list li {
  margin-bottom: 10px;
}

.nav-link-products {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  padding: 10px 15px;
}

.dropdown-products-title {
  font-weight: 700;
  font-size: 20px;
  color: #f36f21;
  margin-top: 0px;
  margin-bottom: 15px;
}

.dropdown-products-image {
  max-width: 100%;
  border-radius: 10px;
}

.dropdown-products-subcategory-list{
  /* display: grid; */
margin-top: 30px;
}

/* Add these media queries to your existing CSS */

@media (max-width: 1024px) {
  .dropdown-products-wrapper {
    width: 700px;
    padding: 15px;
    gap: 20px;
  }
  
  .dropdown-products-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .dropdown-products-category-list,
  .dropdown-products-subcategory-list {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .custom-has-dropdown {
    position: static;
  }
  
  .dropdown-products-wrapper {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: none;
    padding: 10px 0;
    margin-top: 10px;
    display: none;
  }
  
  .custom-has-dropdown:hover .dropdown-products-wrapper {
    display: flex;
    margin-top: 10px;
  }
  
  .dropdown-products-left,
  .dropdown-products-middle,
  .dropdown-products-right {
    width: 100%;
    padding: 0 20px;
  }
  
  .dropdown-products-right {
    display: none; /* Hide the image on mobile */
  }
  
  .dropdown-products-category-list,
  .dropdown-products-subcategory-list {
    font-size: 14px;
  }
  
  .dropdown-products-subcategory-list {
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .dropdown-products-wrapper {
    padding: 5px 0;
  }
  
  .dropdown-products-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .dropdown-products-category-list li,
  .dropdown-products-subcategory-list li {
    margin-bottom: 5px;
  }
  
  .dropdown-products-left,
  .dropdown-products-middle {
    padding: 0 10px;
  }
}

@media (max-width: 320px) {
  .dropdown-products-category-list,
  .dropdown-products-subcategory-list {
    font-size: 12px;
  }
}


/* Update media query for responsive padding */
/* @media (max-width: 480px) {
	body {
		padding-top: 50px; 
	}
} */

.nav {
	width: 100vw;
	min-height: 100px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	padding: 0px;
	background: #fff;
	overflow-x: clip;
position: fixed; /* Make navbar fixed */
	top: 0; /* Position at the top */
	left: 0; /* Ensure it starts from the left edge */
	z-index: 1000; /* High z-index to stay above other content */
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .logo img {
	max-width: 200px;
  height: 100px;
  }
  
  .nav-list {
	display: flex;
	justify-content: space-evenly;
	gap: 30px;
	list-style: none;
	font-family: "Open Sans", sans-serif;
	font-size: 25px;
	font-weight: 400;
  align-items: start;
  }
.menu-item > a{
	padding: 0px;
}
  .nav-list li a {
	text-decoration: none;
	color: #000;
  }
  
  .nav-list li a:hover {
	color: #f36f21;
  }
  
  .press a {
    display: inline-flex; 
    align-items: center;
    justify-content: center; 
    text-decoration: none; 
    border-radius: 11px;
    background: #f36f21;
    width: 150px;
    height: 45px;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.press a:hover {
    background: #898989;
}

.close-btn {
  display: none;
  font-size: 24px;
  color: #f36f21;
  cursor: pointer;
  align-self: flex-end;
  margin-right: 20px;
}

.menu.active .close-btn {
  display: block;
}
  .hamburger {
	display: none;
	font-size: 28px;
	cursor: pointer;
	color: #f36f21;
  }
  
.sidebar-logo  {
  display: none !important;
}


  @media (max-width: 768px) {
    .nav{
      padding: 0px 40px;
    }
	.menu {
	  position: absolute;
	         top: 60px;
        right: 80px;
	  background: #fff;
	  width: 100%;
	  display: none; 
	  flex-direction: column;
	  align-items: center;
	  padding: 20px 0;
	}
	  .nav-list{
		  text-align: start;
	  }
	.menu ul {
	  flex-direction: column;
    gap: 40px;
    font-size: 30px;
      align-items: start;
	}
  
.menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; 
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: #fff;
  opacity: 0.97;
  z-index: 111111;
  box-shadow: 0 0 30px rgba(0,0,0,0.08);
  overflow-y: auto;
}
.menu-item > a{
	padding: 10px 0px !important;
}
  
	.hamburger {
	  display: block;
	}
 .sidebar-logo {
  text-align: center;
  display: block !important;
  margin: 20px 0;
}

.menu.sidebar-logo img {
  max-width: 140px;
  height: auto;
}
}
/* Hide icons by default (desktop) */
.nav-list i {
  display: none;
  margin-right: 8px;
	color: #F36F21;

}

/* Show icons only for mobile */
@media (max-width: 768px) {
  .nav-list i {
    display: inline-block;
  }
}


  


  @media (max-width: 480px) {

    .nav {
      padding: 0px;
      justify-content: space-evenly;
      min-height: 50px;
		position:relative;
  }
  .menu.active {
	  max-width: 250px !important;
    margin-top: 0px;
    right: 0px;
	}
  .press a {
    width: 100px;
    height: 35px;
    font-size: 15px;
}
	.logo img {
	  max-width: 120px;
        height: 60px;
	}
  
	.press button {
	  width: 130px;
	  height: 40px;
	  font-size: 16px;
	}
    .nav-button {
    display: none;
  }
      .Discover-text p {
        font-size: 14px;
    }
	  .menu-item > a{
	padding: 10px 0px;
}
	      .menu ul {
        flex-direction: column;
        gap: 30px !important;
        font-size: 20px !important;
    }
	  
}


  @media only screen and  (min-width:320px) and (max-width: 420px) {
  
	.logo img {
	  max-width: 100px;
    height: 60px;
  }
	.press button {
	  width: 100px;
	  height: 40px;
	  font-size: 12px;
	}
  .nav-button {
    display: none;
  }
	   .menu.active {
	  max-width: 220px !important;
    margin-top: 0px;
    right: 0px;
		   font-size:
	}
  }
  
  /* about section  */
.product-hero {
  background-image: url(https://vitafurniturefittings.com/wp-content/uploads/2025/03/Hero-Image-Container-8.png)  !important;
}

  
.about {
    width: 100vw;
    height: 70vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 20px;
    overflow-x: clip;
}

.about-text {
    background: rgba(243, 110, 33, 0.7); 
    padding: 40px 80px;
    text-align: center;
    max-width: 50%;
    border-radius: 10px; 
}

.about h2 {
    color: #fff; 
    font-size: 4rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .about {
        height: 60vh;
    }

    .about-text {
        max-width: 70%;
        padding: 30px 60px;
    }

    .about h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about {
        height: 50vh;
        padding: 10px;
    }

    .about-text {
        max-width: 85%;
        padding: 20px 40px;
    }

    .about h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about {
        height: 40vh;
        max-width: 100%;
    }

    .about-text {
        max-width: 90%;
        padding: 15px 25px;
    }

    .about h2 {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .about {
        height: 35vh;
        max-width: 100%;
    }

    .about-text {
        padding: 10px 20px;
    }

    .about h2 {
        font-size: 1.8rem;
    }
}



/* single product  page  */
.product-heros {
  background-image: url(https://vitafurniturefittings.com/wp-content/uploads/2025/03/Hero-Image-Container-3.png)  !important;
}

  
.about1 {
    width: 100vw;
    height: 70vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 20px;
    overflow-x: clip;
}

.about-text1 {
    background: rgba(243, 110, 33, 0.7); 
    padding: 40px 80px;
    text-align: center;
    max-width: 50%;
    border-radius: 10px; 
}

.about1 h2 {
    color: #fff; 
    font-size: 4rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .about1 {
        height: 60vh;
    }

    .about-text1 {
        max-width: 70%;
        padding: 30px 60px;
    }

    .about1 h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about1 {
        height: 50vh;
        padding: 10px;
    }

    .about-text1 {
        max-width: 85%;
        padding: 20px 40px;
    }

    .about1 h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about1 {
        height: 40vh;
        max-width: 100%;
    }

    .about-text1 {
        max-width: 90%;
        padding: 15px 25px;
    }

    .about1 h2 {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .about1 {
        height: 35vh;
        max-width: 100%;
    }

    .about-text1 {
        padding: 10px 20px;
    }

    .about1 h2 {
        font-size: 1.8rem;
    }
}





.single-productt {
    display: flex;
    width: 100%;
    max-width: 1400px;
    justify-content: start;
    overflow-x: clip;
    padding: 30px 5%;
    flex-wrap: wrap;
    margin: auto;
}
.single-1 {
  max-width: 50%;
  width: 100%;
      align-items: center;

}

.product-images {
  /* position: relative; */
  padding-top: 40px;
  width: 100%;
  /* max-width: 800px; */
}
.product-images img {
  width: auto;
  height: 200px;
}

.main-image {
  width: 600px;
  height: 400px;
  /* margin: 20px auto 100px auto;  */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* ensure no overflow */
    border: 1px solid #6d6d6d;
  border-radius: 10px;
  }

.main-image img {
  max-width: 90%;
  max-height: 90%;
  height: auto;
  width: auto;
  padding: 50px; 
  border: none !important;

}

.thumbnail-list{
  width: 600px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  /* margin-top: 20px;
  padding: 20px;
  margin-left: 50px; */
}


.thumbnail-list img
 {
  width: 100px;
  margin-top: 20px;
  align-items: center;
  margin-left: 15px;
  height: 100px;
  border: 1px solid #6d6d6d;
}


.single-2 p {
  font-size: 24px;
  max-width: 90%;
  color: #6d6d6d;
}
.product-description {
  margin-top: 30px;
  height: auto;
}
.single-2 {
  max-width: 50%;
  padding: 50px 0px;
}
.single-2 h1 {
  font-size: 40px;
  color: #2f2f2f;


}
.product-price {
  font-size: 30px;
  color: #2f2f2f;
  margin-top: 30px;
  display: none;
}

.buy-now-button {
  margin-top: 30px;
margin-left: 20px;

}
.buy-now-button button {
  padding: 10px 15px;
  background-color: #f36f21;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 28px;
  border-radius: 10px;
}
.single-2 hr{
  width: 100%;
  margin-left: 0px;
  border: 1px solid #f36f21;
}
.selected{
  border-color: #f36f21;
    border: 5px solid #f36f21;
    /* padding: 10px; */
}

/* ===== Fullscreen Lightbox (NEW) ===== */
.image-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.image-lightbox.open{ display: flex; }

.lightbox-img{
  max-width: 92vw;
  max-height: 92vh;
  user-select: none;
  transition: transform 0.2s ease, transform-origin 0.05s;
  cursor: grab;
}

.lightbox-close{
  position: fixed;
  top: 18px;
  right: 22px;     /* right side cross button */
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  cursor: pointer;
}

@media (hover:none){
  .lightbox-img{ cursor: default; }
}
@media (max-width: 600px){
  .image-lightbox.open{ padding: 8px; }
  .lightbox-img{
    max-width: 98vw;
    max-height: 82vh;
  }
  .lightbox-close{
    top: calc(10px + env(safe-area-inset-top, 0px));
    right: calc(10px + env(safe-area-inset-right, 0px));
    width: 40px;
    height: 40px;
    font-size: 26px;
    line-height: 40px;
  }
}

/* Ultra-small devices */
@media (max-width: 380px){
  .lightbox-img{ max-height: 78vh; }
  .lightbox-close{
    width: 36px; height: 36px; font-size: 24px; line-height: 36px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .lightbox-img{ transition: none !important; }
}








.related-products {
  text-align: center;
  padding: 100px 20px;
  background-color: #dedada;
  width: 100%;
}

.related-products h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.related-products p.subtitle {
  font-size: 14px;
  color: #f36f21;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.related-products-slider {
  position: relative;
  display: flex;
  align-items: center;
  /* width: 100%; */
  max-width: 1200px;
  margin: 0 auto;
}

.related-products-track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.related-products-track::-webkit-scrollbar {
    display: none;
}

.prevv {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.nextt {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.related-product-item {
  min-width: 260px;
  margin: 0 12px;
  /* background: #fff; */
  border-radius: 8px;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
  text-align: center;
  padding: 10px;
  transition: transform 0.3s;
}

.related-product-item img {
 max-width: 250px;
    border-radius: 6px;
    height: 100%;
    max-height: 250px;
      border: 1px solid #6d6d6d;
    border-radius: 10px;
}
.related-product-item a{
  text-decoration: none;
  color: #333;
}


.related-product-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
    color: #555555;
padding-bottom: 20px;
}

.related-product-item:hover {
  transform: translateY(-6px);
}

.slider-arrow {
  background: #f36f21;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.slider-arrow:hover {
  background: #d95e1a;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
.product-description {
font-size: 15px;
}
}





@media (max-width: 1440px) {
  .thumbnail-list img:nth-child(1) {
    max-width: 700px;
    margin: 20px;
  }
  .product-price {
    margin-top: 60px;
}
  .single-2 p {
    font-size: 20px;
  }

  .thumbnail-list img:nth-child(1),
  .thumbnail-list img:nth-child(2),
  .thumbnail-list img:nth-child(3) {
    width: 180px !important;
    margin-top: 20px;
    align-items: center;
    margin-left: 30px;
  }
  .product-description {
    margin-top: 30px;
}
  .product-images {
    padding: 0px;
  }
  .main-image img {
    height: 400px;
    padding: 0px;
  }
    .main-image {
       width: 90%;
    height: auto;
    margin:auto;
    margin-top: 50px;
  }
}

@media (max-width: 1024px) {
  .thumbnail-list img:nth-child(1) {
           max-width: 90%;
        margin: 20px;
  }
  .main-image img  {
    max-width: 400px;
    height: 300px;
    margin: auto;
  }



  .single-2 h1 {
    font-size: 32px;
    text-align: center;
	  margin-top:15px;
  }
.main-image {
  height: auto;
}
  .product-price {
    font-size: 24px;
  }

  .product-description { 
    height: auto;
    font-size: 18px;
  }

  .buy-now-button button {
    font-size: 24px;
    padding: 8px 12px;
  }
  .single-2 p {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .single-1,
  .single-2 {
    max-width: 100%;
  }
  .single-productt {
    flex-direction: column;
    align-items: center;
  }

  .product-images {
    padding: 0px;
    text-align: center;
}
	.thumbnail-list{
		gap: 0px !important;
	}
	
  .thumbnail-list img:nth-child(1),
	.thumbnail-list img:nth-child(2),
	  .thumbnail-list img:nth-child(3),
	  .thumbnail-list img:nth-child(4){
    max-width: 100px !important;
		  height: 100px !important;
		  margin: 10px !important;
  }
 
  .single-2 p {
    font-size: 17px;
    max-width: 95%;
    margin-left: 20px;
  }
}

@media (max-width: 425px) {
  .single-2 p {
    font-size: 11px;
    max-width: 90%;
  }

  .buy-now-button button {
    font-size: 14px;
  }
	..thumbnail-list{
		gap: 0px !important;
	}

.thumbnail-list img:nth-child(1),
  .thumbnail-list img:nth-child(2),
  .thumbnail-list img:nth-child(3),
  .thumbnail-list img:nth-child(4) {
 max-width: 80px !important;
        height: 80px !important;
  }
  .product-description {
    height: auto;
    font-size: 16px;
  }


  .single-2 {
    padding: 0px;
}
}

@media (max-width: 375px) {
	 .thumbnail-list img:nth-child(1), .thumbnail-list img:nth-child(2), .thumbnail-list img:nth-child(3), .thumbnail-list img:nth-child(4) {
      max-width: 50px !important;
	  height: 50px !important;

  }
  .single-2 {
    padding: 0px 35px;
}
}

@media (max-width: 320px) {
	 .thumbnail-list img:nth-child(1), 
  .thumbnail-list img:nth-child(2), .thumbnail-list img:nth-child(3), .thumbnail-list img:nth-child(4) {
      margin-left: 10px;
  }
  .single-2 {
    padding: 0px 60px;
}
}





  


  /* add customer css */


        .testimonials-section {
            background-color: #222;
            /* background-image: linear-gradient(135deg, rgba(0,0,0,0.4) 25%, transparent 25%, 
                              transparent 50%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.4) 75%, 
                              transparent 75%, transparent); */
            background-size: 10px 10px;
            padding: 80px 0;
            width: 100%;
            position: relative;
			
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 0 20px;
        }

        .testimonials-header {
            color: #fff;
            max-width: 300px;
            margin-right: 30px;
        }

        .testimonials-subtitle {
            color: #f36f21;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .testimonials-title {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .testimonials-description {
            font-size: 15px;
            line-height: 1.6;
            color: #ccc;
        }

        .testimonials-slider {
            flex: 1;
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            width: calc(33.33% - 14px);
            position: relative;
            padding: 30px 20px 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
.testimonial-card {
    /* Other properties */
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
    border-bottom: 3px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #f36f21;
}




/* Plus animations for quote icons, author images, and text */
        .quote-icon {
            position: absolute;
            top: -20px;
            left: 20px;
            width: 40px;
            height: 40px;
            background-color: #f36f21;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .testimonial-text {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 140px;
			flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
/* 			justify-content: space-between; */
			gap: 10px;
            margin-top: auto;
        }

        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-details h4 {
            margin: 0;
            color: #333;
            font-size: 16px;
            font-weight: 600;
        }

        .author-details p {
            margin: 0;
            color: #f36f21;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            position: relative;
            width: 25%;
            margin: 30px auto 0;
        }

        .progress-bar {
            height: 4px;
            width: 100%;
            background-color: #444;
            border-radius: 2px;
            overflow: hidden;
        }

        .progress {
            height: 100%;
            width: 40%;
            background-color: #f36f21;
            border-radius: 2px;
        }

        @media (max-width: 992px) {
            .testimonials-container {
                flex-direction: column;
            }
            .testimonials-header {
                max-width: 100%;
                text-align: center;
                margin-bottom: 40px;
                margin-right: 0;
            }
            .testimonials-slider {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 768px) {
            .testimonial-card {
                width: 100%;
                margin-bottom: 40px;
            }
            .slider-controls {
                width: 50%;
            }
			.testimonial-text{
				min-height: 100px !important;
			}
        }
  @media (max-width: 425px) {
			.testimonial-text{
				min-height: 80px !important;
			}
        }
    


        /* nxt section  */

          .benefits-section {
              background-color: #2a2a2a;
            padding: 80px 20px;
            text-align: center;
            color: #fff;
            /* max-width: 1200px; */
            margin: 0 auto;
            width: 100%;
        }

        .key-benefits {
            color: #f36f21;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .section-title {
            font-size: 42px;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .section-description {
            color: #b0b0b0;
            max-width: 900px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        .divider {
            width: 60px;
            height: 3px;
            background-color: #f36f21;
            margin: 0 auto 50px;
        }

        .benefits-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 180px;
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background-color: #f36f21;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .benefit-icon svg {
            width: 40px;
            height: 40px;
            fill: none;
            stroke: white;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .benefit-title {
            font-size: 18px;
            font-weight: 600;
        }
 .benefit-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(243, 111, 33, 0.7);
}
.benefit-icon:hover + .benefit-title {
    color: #f36f21;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* last section  */

.cta-banner {
  background-color: #f36f21;
  padding: 30px 40px;
  border-radius: 0 80px 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin: 50px auto;
  max-width: 1200px;
      width: 100%;
}

.cta-text h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
}

.cta-text p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.cta-button a {
  background-color: #fff;
  color: #f36f21;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.3s ease;
  display: inline-block;
  border: 2px solid #fff;
      border-radius: 25px;
}

.cta-button a:hover {
  color: #fff;
  background-color: #6d6d6d;
}
@media (max-width: 1024px) {
  .cta-banner {
    padding: 25px 30px;
    border-radius: 0 60px 60px 0;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: left;
  }

  .cta-text {
    flex: 1 1 60%;
    margin-bottom: 15px;
  }

  .cta-button {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 0 40px 40px 0;
    gap: 15px;
  }

  .cta-text {
    width: 100%;
  }

  .cta-button {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .cta-button a {
    font-size: 14px;
    padding: 10px 18px;
  }

  .cta-text h2 {
    font-size: 20px;
  }

  .cta-text p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 15px;
    border-radius: 0 25px 25px 0;
  }

  .cta-text h2 {
    font-size: 18px;
  }

  .cta-text p {
    font-size: 12px;
  }

  .cta-button a {
    font-size: 13px;
    padding: 8px 16px;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .cta-banner {
    padding: 5px !important;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0px !important;
    gap: 15px;
  }

  .cta-text {
    width: 100%;
    max-width: 80%;
	  margin: auto;
  }

  .cta-text h2 {
    font-size: 18px;
  }

  .cta-text p {
    font-size: 12px;
  }

  .cta-button {
    width: 100%;
    display: flex;
    justify-content: flex-start;
	max-width: 80%;
    margin: auto;
  }

  .cta-button a {
    font-size: 13px;
    padding: 8px 16px;
  }
	.benefits-section{
		    padding: 80px 0px !important;
	}
}

/* footer section */

      .footer-wrapper {
        font-family: sans-serif; 
        box-sizing: border-box;
        background: #fff2e942;
    box-shadow: 25px 13px 59px #fc670042;
      }
      
      .footer-wrapper *,
      .footer-wrapper *::before,
      .footer-wrapper *::after {
        box-sizing: border-box;
      }
      
      .footer-wrapper ul {
        list-style: none;
        margin: 0;
        padding: 0;
      }
      
      .footer-wrapper a {
        text-decoration: none;
        color: inherit;
      }

      .site-footer {
     background: #fff2e942;
        color: #333; 
        padding: 60px 40px;
        border-top: 1px solid #e7e7e7;
        max-width: 1600px;
        margin: auto;

      }

      .footer-grid {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px; 
        margin-bottom: 40px;
      }

      .footer-column {
        flex: 1; 
        min-width: 220px; 
        padding: 0 15px;
      }

      .footer-logo img {
        max-width: 180px;
        margin-bottom: 20px;
      }

      .footer-column h4 {
        font-size: 18px;
        color: #f36f21; 
        margin-bottom: 25px;
        position: relative;
        padding: 0; 
        margin-top: 0; 
      }
      
      .footer-column h4::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        background-color: #555; 
        height: 2px;
        width: 50px;
      }

      .footer-column p {
        font-size: 16px;
        line-height: 1.7;
        color: #898989; 
        margin: 0; 
        padding: 0; 
      }

      .footer-column ul li {
        margin-bottom: 12px;
      }

      .footer-column ul li a {
        font-size: 16px;
        color: #898989;
        transition: color 0.3s ease;
      }
      
      .footer-column ul li a:hover {
        color: #f36f21; 
        padding-left: 5px; 
      }

      .hotline-section h3 {
        font-size: 22px;
        color: #22475a;
        margin-top: 0;
        margin-bottom: 15px;
        transition: color 0.3s ease;
      }
       .hotline-section h3:hover {
        color: #f36f21;
      }

      .social-media-icons a {
        display: inline-block;
        margin-top: 15px;
        margin-right: 10px;
        transition: transform 0.3s ease;
      }
      
      .social-media-icons a:hover {
        transform: translateY(-3px); 
      }

      .social-media-icons img {
        width: 35px; 
        height: auto;
        vertical-align: middle; 
      }

      .footer-legal-notice {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #e7e7e7; 
      }

      .footer-legal-notice p {
        font-size: 16px;
        color: #888; 
      }

/* @media (max-width: 1024px) {
	.d{
		text-align: center;
	}

} */

      @media (max-width: 768px) {
        .footer-grid {
          flex-direction: column; 
          text-align: center;
			gap: 10px;
        }

        .footer-column {
          margin-bottom: 30px;
        }
        
        .footer-column h4::before {
          left: 50%;
          transform: translateX(-50%);
        }

        .footer-column ul li a:hover {
          padding-left: 0;
        }
      }
