@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap");
.border-top-left-radius-half {
  border-top-left-radius: 25px;
  overflow: hidden;
}

.border-top-right-radius-half {
  border-top-right-radius: 25px;
  overflow: hidden;
}

.border-bottom-left-radius-half {
  border-bottom-left-radius: 25px;
  overflow: hidden;
}

.border-bottom-right-radius-half {
  border-bottom-right-radius: 25px;
  overflow: hidden;
}

.border-top-left-radius-full {
  border-top-left-radius: 50px;
  overflow: hidden;
}

.border-top-right-radius-full {
  border-top-right-radius: 50px;
  overflow: hidden;
}

.border-bottom-left-radius-full {
  border-bottom-left-radius: 50px;
  overflow: hidden;
}

.border-bottom-right-radius-full {
  border-bottom-right-radius: 50px;
  overflow: hidden;
}

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

body {
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #737373;
  background-color: #fff;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 40px 0 1rem;
  margin-bottom: 60px;
}
.site-header .site-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.site-header .site-branding .site-logo {
  width: 203px;
  height: 63px;
  margin: 10px 0;
}
.site-header .site-branding .site-title {
  margin: 0;
}
.site-header .site-branding .site-title a {
  color: #333;
  text-decoration: none;
}
.site-header .site-branding .site-title a:hover {
  color: #0073aa;
}
.site-header .site-branding .site-description {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}
.site-header .nav-primary .menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.site-header .nav-primary .menu li {
  margin: 0;
}
.site-header .nav-primary .menu li a {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #6A6A6A;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0px;
}
.site-header .nav-primary .menu li a:hover, .site-header .nav-primary .menu li a:focus {
  color: #0073aa;
}
.site-header .nav-primary .menu li.menu-item-has-children {
  position: relative;
}
.site-header .nav-primary .menu li.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  gap: 0;
  min-width: 200px;
  z-index: 1000;
}
.site-header .nav-primary .menu li.menu-item-has-children .sub-menu li a {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  text-transform: none;
  font-size: 13px;
}
.site-header .nav-primary .menu li.menu-item-has-children .sub-menu li a:last-child {
  border-bottom: none;
}
.site-header .nav-primary .menu li.menu-item-has-children:hover .sub-menu {
  display: flex;
}
.site-header .nav-primary .menu li.current-menu-item a, .site-header .nav-primary .menu li.current-menu-ancestor a {
  color: #6a6a6a;
  font-weight: 600;
  border-bottom: 1px solid #6a6a6a;
}
.site-header .nav-primary .menu li.cart a {
  font-size: 0;
  display: block;
  width: 29px;
  height: 27px;
  background: url("../images/cart-icon.png") no-repeat center center;
  background-size: contain;
  border-bottom: none !important;
}
.site-header .nav-primary .menu li.cart a:hover {
  opacity: 0.7;
}
.site-header .nav-primary .menu li.contact {
  margin-top: -3px;
}
.site-header .nav-primary .menu li.contact a {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid #6A6A6A !important;
  border-radius: 20px;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.site-header .nav-primary .menu li.contact a:hover {
  background: #6A6A6A;
  color: #fff;
}
.site-header .nav-primary .menu li.contact.current-menu-item a, .site-header .nav-primary .menu li.contact.current-menu-ancestor a {
  border-bottom: none;
}

.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu-toggle .hamburger {
  display: block;
  width: 25px;
  height: 20px;
  position: relative;
}
.mobile-menu-toggle .hamburger .hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #6A6A6A;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.mobile-menu-toggle .hamburger .hamburger-line:nth-child(1) {
  top: 0;
}
.mobile-menu-toggle .hamburger .hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.mobile-menu-toggle .hamburger .hamburger-line:nth-child(3) {
  bottom: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: #fff;
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .mobile-menu-content {
  padding: 80px 20px 20px;
}
.mobile-menu .mobile-menu-content .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.mobile-menu .mobile-menu-content .menu li {
  margin: 0;
  border-bottom: 1px solid #eee;
}
.mobile-menu .mobile-menu-content .menu li:last-child {
  border-bottom: none;
}
.mobile-menu .mobile-menu-content .menu li a {
  display: block;
  padding: 15px 0;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #6A6A6A;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-menu .mobile-menu-content .menu li a:hover {
  color: #0073aa;
}
.mobile-menu .mobile-menu-content .menu li.menu-item-has-children > a {
  position: relative;
  padding-right: 30px;
}
.mobile-menu .mobile-menu-content .menu li.menu-item-has-children > a:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.3s ease;
}
.mobile-menu .mobile-menu-content .menu li.menu-item-has-children.submenu-open > a:after {
  transform: translateY(-50%) rotate(45deg);
}
.mobile-menu .mobile-menu-content .menu li.menu-item-has-children .sub-menu {
  display: none;
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
}
.mobile-menu .mobile-menu-content .menu li.menu-item-has-children .sub-menu li {
  border-bottom: 1px solid #f5f5f5;
}
.mobile-menu .mobile-menu-content .menu li.menu-item-has-children .sub-menu li:last-child {
  border-bottom: none;
}
.mobile-menu .mobile-menu-content .menu li.menu-item-has-children .sub-menu li a {
  font-size: 14px;
  text-transform: none;
  padding: 10px 0;
}
.mobile-menu .mobile-menu-content .menu li.current-menu-item > a, .mobile-menu .mobile-menu-content .menu li.current-menu-ancestor > a {
  color: #6a6a6a;
  font-weight: 600;
}

@media (max-width: 991px) {
  .site-header .nav-primary {
    display: none;
  }
  .site-header .container {
    position: relative;
  }
}
.site-footer {
  background: #F3F3F3;
  padding: 2rem 0 1rem;
  border-top: 1px solid #eee;
  margin-top: 3rem;
}
.site-footer .footer-widgets {
  margin-bottom: 2rem;
}
.site-footer .footer-widgets .footer-widget {
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .site-footer .footer-widgets .footer-widget {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
  }
  .site-footer .footer-widgets .footer-widget:last-child {
    border-bottom: none;
  }
}
.site-footer .footer-widgets .footer-widget h4.widget-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #333;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.site-footer .footer-widgets .footer-widget ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-widgets .footer-widget ul li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-widgets .footer-widget ul li a {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666;
  text-decoration: none;
}
.site-footer .footer-widgets .footer-widget ul li a:hover {
  color: #0073aa;
}
.site-footer .footer-widgets .footer-widget p {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666;
  text-align: left;
  line-height: 1.6;
}
.site-footer .footer-widgets .footer-widget .widget_text p,
.site-footer .footer-widgets .footer-widget .widget_custom_html p {
  margin-bottom: 0.75rem;
}
.site-footer .footer-widgets .footer-widget .widget_nav_menu ul li a {
  display: block;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.site-footer .footer-widgets .footer-widget .widget_nav_menu ul li a:hover {
  border-bottom-color: #0073aa;
}
.site-footer .site-info {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.site-footer .site-info p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}
.site-footer .site-info .nav-footer {
  margin-top: 1rem;
}
.site-footer .site-info .nav-footer .menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
@media (max-width: 575.98px) {
  .site-footer .site-info .nav-footer .menu {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.site-footer .site-info .nav-footer .menu li a {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #666;
  text-decoration: none;
}
.site-footer .site-info .nav-footer .menu li a:hover {
  color: #0073aa;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
}

h2 {
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  font-size: 50px;
  line-height: 50px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0px;
}

p {
  margin-bottom: 1rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #737373;
}

a {
  color: #0073aa;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.header-image {
  display: flex;
  justify-content: end;
}
.header-image .img-container {
  position: relative;
  width: 60%;
  height: 600px;
}
.header-image .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
  border-top-left-radius: 154px;
  border-bottom-left-radius: 154px;
}
.header-image .img-container .header-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  border-top-left-radius: 154px;
  border-bottom-left-radius: 154px;
}
.header-image .img-container .circle-overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -100px;
  width: 252px;
  height: 252px;
  border-radius: 50%;
  border: 4px solid #f3f3f3;
}

.page-title {
  height: 600px;
  margin-top: -600px;
  position: relative;
}
.page-title h1 {
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  font-size: 50px;
  line-height: 50px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .site-header {
    margin-bottom: 0px;
  }
  .header-image .img-container {
    width: 100%;
    height: 400px;
  }
  .header-image .img-container img {
    border-top-left-radius: 0px;
  }
  .page-title {
    margin-top: 0;
    height: 100px;
  }
}
.breadcrumbs {
  padding: 15px 0;
  margin-bottom: 20px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666;
}
.breadcrumbs a {
  color: #666;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #0073aa;
  text-decoration: underline;
}
.breadcrumbs .current {
  color: #333;
  font-weight: 500;
}

.parallax-row {
  min-height: 438px;
}

/*
Visual Composer Styles
*/
.text-center-content .wpb_wrapper p {
  max-width: 935px;
  margin-left: auto;
  margin-right: auto;
}

/*
Lumen Button Styles
*/
.lumen-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 24px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  gap: 8px;
}
.lumen-button:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.lumen-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.3);
}
.lumen-button.lumen-button-small {
  padding: 8px 16px;
  font-size: 14px;
}
.lumen-button.lumen-button-small i {
  font-size: 14px;
}
.lumen-button.lumen-button-medium {
  padding: 14px 24px;
  font-size: 16px;
}
.lumen-button.lumen-button-medium i {
  font-size: 16px;
}
.lumen-button.lumen-button-large {
  padding: 16px 32px;
  font-size: 18px;
}
.lumen-button.lumen-button-large i {
  font-size: 18px;
}
.lumen-button.lumen-button-primary {
  background-color: transparent;
  color: #3C3C3C;
  border-color: #B2B2B2;
}
.lumen-button.lumen-button-primary:hover {
  background-color: #3c3c3c;
  border-color: #005a87;
  color: #fff;
}
.lumen-button.lumen-button-secondary {
  background-color: #6c757d;
  color: #fff;
  border-color: #6c757d;
}
.lumen-button.lumen-button-secondary:hover {
  background-color: #5a6268;
  border-color: #5a6268;
  color: #fff;
}
.lumen-button.lumen-button-outline {
  background-color: transparent;
  color: #0073aa;
  border-color: #0073aa;
}
.lumen-button.lumen-button-outline:hover {
  background-color: #0073aa;
  color: #fff;
}
.lumen-button.lumen-button-ghost {
  background-color: transparent;
  color: #333;
  border-color: transparent;
  border-bottom: 2px solid #0073aa;
  border-radius: 0;
}
.lumen-button.lumen-button-ghost:hover {
  color: #0073aa;
  border-bottom-color: #005a87;
  transform: translateY(-1px);
  box-shadow: none;
}

.service-padding-left .vc_column-inner {
  padding-left: 60px !important;
}

.service-padding-right .vc_column-inner {
  padding-right: 60px !important;
}

.service-row {
  position: relative;
  margin-bottom: 35px;
}
.service-row::after {
  content: "";
  display: block !important;
  width: calc(100% - 30px);
  position: absolute;
  bottom: 0;
  left: 15px;
  height: 1px;
  background: #707070;
}

/*
Lumen Product Categories Styles
*/
.lumen-product-categories .row {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
.lumen-product-categories.columns-4 .category-item {
  width: 25%;
  flex: 0 0 25%;
}
.lumen-product-categories.columns-3 .category-item {
  width: 33.333%;
  flex: 0 0 33.333%;
}
.lumen-product-categories.columns-2 .category-item {
  width: 50%;
  flex: 0 0 50%;
}
.lumen-product-categories .category-item {
  padding: 10px;
}
.lumen-product-categories .category-item.top-left-corner .category-image {
  border-top-left-radius: 25px;
  overflow: hidden;
}
.lumen-product-categories .category-item.top-right-corner .category-image {
  border-top-right-radius: 25px;
  overflow: hidden;
}
.lumen-product-categories .category-item .category-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.lumen-product-categories .category-item .category-link:hover {
  text-decoration: none;
  color: inherit;
}
.lumen-product-categories .category-item .category-image {
  position: relative;
  background-color: #f8f8f8;
  height: 400px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.lumen-product-categories .category-item .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.lumen-product-categories .category-item .category-image .no-image {
  width: 100%;
  height: 100%;
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lumen-product-categories .category-item .category-image .no-image::before {
  content: "📦";
  font-size: 3rem;
  opacity: 0.3;
}
.lumen-product-categories .category-item .category-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  text-decoration: none;
  background-color: transparent;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.3s ease;
}
.lumen-product-categories .category-item .category-title span {
  display: inline-block;
  position: relative;
  padding: 0 10px;
}
.lumen-product-categories .category-item .category-title span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 10px;
  right: 10px;
  height: 2px;
  background-color: #333;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lumen-product-categories .category-item:hover .category-title {
  background-color: #F3F3F3;
}
.lumen-product-categories .category-item:hover .category-title span::after {
  opacity: 1;
}
@media (max-width: 991px) {
  .lumen-product-categories .category-item .category-image {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    height: 300px;
  }
  .lumen-product-categories.columns-4 .category-item {
    width: 50%;
    flex: 0 0 50%;
  }
  .lumen-product-categories.columns-4 .category-item.top-right-corner .category-image {
    border-top-right-radius: 0;
  }
  .lumen-product-categories.columns-4 .category-item:nth-child(2) .category-image {
    border-top-right-radius: 25px;
    overflow: hidden;
  }
  .lumen-product-categories.columns-3 .category-item {
    width: 50%;
    flex: 0 0 50%;
  }
  .lumen-product-categories.columns-3 .category-item.top-right-corner .category-image {
    border-top-right-radius: 0;
  }
  .lumen-product-categories.columns-3 .category-item:nth-child(2) .category-image {
    border-top-right-radius: 25px;
    overflow: hidden;
  }
}
@media (max-width: 575px) {
  .lumen-product-categories .category-item {
    width: 100% !important;
    flex: 0 0 100% !important;
  }
  .lumen-product-categories .category-item .category-image {
    height: 250px;
  }
  .lumen-product-categories .category-item.top-right-corner .category-image {
    border-top-right-radius: 0;
  }
  .lumen-product-categories .category-item.top-left-corner .category-image {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    overflow: hidden;
  }
  .lumen-product-categories .category-item:first-child:not(.top-left-corner) .category-image {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    overflow: hidden;
  }
}

/*
Projects Archive Styles
*/
.projects-archive {
  margin-top: 40px;
  margin-bottom: 60px;
}
.projects-archive .project-item {
  margin-bottom: 30px;
}
.projects-archive .project-item .project-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.projects-archive .project-item .project-link:hover {
  text-decoration: none;
}
.projects-archive .project-item .project-link:hover .project-image img {
  transform: scale(1.05);
}
.projects-archive .project-item .project-link:hover .project-title {
  background-color: #F3F3F3;
}
.projects-archive .project-item .project-link:hover .project-title h3:after {
  opacity: 1;
}
.projects-archive .project-item .project-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background-color: #f8f8f8;
}
.projects-archive .project-item .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.projects-archive .project-item .project-image .no-image {
  width: 100%;
  height: 100%;
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projects-archive .project-item .project-image .no-image::before {
  content: "🏗️";
  font-size: 3rem;
  opacity: 0.3;
}
.projects-archive .project-item .project-title {
  padding: 20px 15px;
  background-color: #fff;
  border: 1px solid #eee;
  border-top: none;
  transition: background-color 0.3s ease;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projects-archive .project-item .project-title h3 {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.projects-archive .project-item .project-title h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: #333;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.projects-archive .project-item .project-image {
  border-radius: 0;
}
.projects-archive .pagination-nav {
  margin-top: 50px;
}
.projects-archive .pagination-nav .page-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.projects-archive .pagination-nav .page-numbers li {
  margin: 0;
}
.projects-archive .pagination-nav .page-numbers li a, .projects-archive .pagination-nav .page-numbers li span {
  display: inline-block;
  padding: 8px 16px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  border: 2px solid #B2B2B2;
  border-radius: 24px;
  transition: all 0.3s ease;
}
.projects-archive .pagination-nav .page-numbers li a:hover, .projects-archive .pagination-nav .page-numbers li span:hover {
  background-color: #3c3c3c;
  border-color: #3c3c3c;
  color: #fff;
}
.projects-archive .pagination-nav .page-numbers li .current {
  background-color: #3c3c3c;
  border-color: #3c3c3c;
  color: #fff;
}
.projects-archive .pagination-nav .page-numbers li .dots {
  border: none;
  padding: 8px 5px;
}
.projects-archive .pagination-nav .page-numbers li .dots:hover {
  background-color: transparent;
  color: #666;
}
@media (max-width: 991px) {
  .projects-archive .project-item .project-image {
    height: 220px;
  }
}
@media (max-width: 575px) {
  .projects-archive .project-item .project-image {
    height: 200px;
  }
  .projects-archive .project-item .project-title h3 {
    font-size: 13px;
  }
}

/*
Single Project Styles
*/
.single-projects .project-name {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: #000;
  text-align: center;
  margin: 40px 0 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.single-projects .project-content {
  margin-bottom: 40px;
}
.single-projects .project-content p {
  max-width: 935px;
  margin-left: auto;
  margin-right: auto;
}
.single-projects .gallery-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 50px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0px;
  margin-bottom: 30px;
  text-align: center;
}
.single-projects .project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.single-projects .project-gallery-grid .gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background-color: #f8f8f8;
  cursor: zoom-in;
  transition: all 0.3s ease;
}
.single-projects .project-gallery-grid .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.single-projects .project-gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}
.single-projects .project-gallery-grid .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .single-projects .project-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  .single-projects .project-gallery-grid .gallery-item img {
    height: 150px;
  }
}
.single-projects .project-meta {
  padding: 20px;
  background-color: #F3F3F3;
  border-radius: 10px;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
}
.single-projects .project-meta strong {
  color: #333;
  margin-right: 10px;
}
.single-projects .project-meta a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.single-projects .project-meta a:hover {
  color: #0073aa;
  text-decoration: underline;
}

/*
Lumen Slider Styles
*/
.lumen-slider-wrapper {
  position: relative;
}
.lumen-slider-wrapper .lumen-slider .slick-list {
  overflow: hidden;
}
.lumen-slider-wrapper .lumen-slider .slick-track {
  display: flex;
}
.lumen-slider-wrapper .lumen-slider .slide-item {
  outline: none;
}
.lumen-slider-wrapper .lumen-slider .slide-item:focus {
  outline: none;
}
.lumen-slider-wrapper .slider-item {
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.lumen-slider-wrapper .slider-content {
  position: relative;
  z-index: 2;
  height: 600px;
  display: flex;
  align-items: center;
  width: 100vw;
}
.lumen-slider-wrapper .slider-content .background-image {
  width: 50vw;
  height: 100%;
  position: absolute;
  right: 0;
  background-size: cover;
  border-top-left-radius: 154px;
  border-bottom-left-radius: 154px;
}
.lumen-slider-wrapper .slider-content .container {
  position: relative;
}
.lumen-slider-wrapper .slider-content .hero-text-and-button {
  width: 450px;
  position: absolute;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  left: 200px;
}
.lumen-slider-wrapper .slider-content .hero-text-and-button .lumen-button {
  align-self: flex-start;
  margin-left: -10px;
}
.lumen-slider-wrapper .slider-content .slider-hero-text {
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  font-size: 50px;
  line-height: 60px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0px;
  margin-bottom: 30px;
  width: 450px;
}
@media (max-width: 767px) {
  .lumen-slider-wrapper .slider-content .slider-hero-text {
    font-size: 36px;
    line-height: 44px;
  }
}
.lumen-slider-wrapper .slider-content .img-container {
  position: absolute;
  top: 50%;
  left: calc(50% + 200px);
  transform: translate(-50%, -50%);
  z-index: 9999;
  width: 400px;
  height: 400px;
}
.lumen-slider-wrapper .slider-content .img-container .featured-image {
  width: 400px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid #f3f3f3;
  position: relative;
  z-index: 2;
  top: 50%;
  right: calc(50% - 200px);
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .lumen-slider-wrapper .slider-content .img-container .featured-image {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .lumen-slider-wrapper .slider-content .img-container .featured-image {
    width: 300px;
    height: 300px;
  }
}
.lumen-slider-wrapper .slider-content .img-container .circle-overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  z-index: 1;
}
@media (max-width: 991px) {
  .lumen-slider-wrapper .slider-content .img-container .circle-overlay {
    width: 350px;
    height: 350px;
    right: -25px;
  }
}
@media (max-width: 767px) {
  .lumen-slider-wrapper .slider-content .img-container .circle-overlay {
    width: 280px;
    height: 280px;
    right: -15px;
  }
}
.lumen-slider-wrapper .slick-prev,
.lumen-slider-wrapper .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 0;
  transition: all 0.3s ease;
  display: none !important;
}
.lumen-slider-wrapper .slick-prev:before,
.lumen-slider-wrapper .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  color: #FFFFFF;
}
.lumen-slider-wrapper .slick-prev:hover, .lumen-slider-wrapper .slick-prev:focus,
.lumen-slider-wrapper .slick-next:hover,
.lumen-slider-wrapper .slick-next:focus {
  background: rgba(255, 255, 255, 0.3);
  border-color: #FFFFFF;
  outline: none;
}
.lumen-slider-wrapper .slick-prev {
  left: 30px;
}
.lumen-slider-wrapper .slick-next {
  right: 30px;
}
.lumen-slider-wrapper .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 3;
}
.lumen-slider-wrapper .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.lumen-slider-wrapper .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lumen-slider-wrapper .slick-dots li button:hover, .lumen-slider-wrapper .slick-dots li button:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.5);
}
.lumen-slider-wrapper .slick-dots li.slick-active button {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
@media (max-width: 991px) {
  .lumen-slider-wrapper .slider-item {
    min-height: auto;
  }
  .lumen-slider-wrapper .slider-content {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
  }
  .lumen-slider-wrapper .slider-content .background-image {
    display: none;
  }
  .lumen-slider-wrapper .slider-content .hero-text-and-button {
    width: 100%;
    text-align: center;
    position: relative;
    margin: 0 auto;
    top: auto;
    left: auto;
    transform: none;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 2;
  }
  .lumen-slider-wrapper .slider-content .hero-text-and-button h1 {
    margin: 30px 0 0;
    width: 100%;
  }
  .lumen-slider-wrapper .slider-content .hero-text-and-button .lumen-button {
    align-self: center;
    margin: 30px 0 0;
  }
  .lumen-slider-wrapper .slider-content .img-container {
    position: relative;
    transform: none;
    margin: 0 auto;
    top: auto;
    left: auto;
    width: 300px;
    height: 300px;
    order: 1;
  }
  .lumen-slider-wrapper .slider-content .img-container .featured-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    right: auto;
    margin: 0;
  }
  .lumen-slider-wrapper .slick-dots {
    bottom: 0px;
  }
  .lumen-slider-wrapper .slick-prev,
  .lumen-slider-wrapper .slick-next {
    width: 40px;
    height: 40px;
  }
  .lumen-slider-wrapper .slick-prev:before,
  .lumen-slider-wrapper .slick-next:before {
    font-size: 16px;
  }
  .lumen-slider-wrapper .slick-prev {
    left: 15px;
  }
  .lumen-slider-wrapper .slick-next {
    right: 15px;
  }
}

/*
WooCommerce Single Product Styles
*/
.product-category-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-align: center;
}

.single-product-container {
  margin-top: 40px;
  margin-bottom: 60px;
}

.shop-sidebar .sidebar-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}
.shop-sidebar .sidebar-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.shop-sidebar .sidebar-section:last-child {
  border-bottom: none;
}
.shop-sidebar .section-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
.shop-sidebar .woocommerce-product-search {
  display: flex;
}
.shop-sidebar .woocommerce-product-search input[type=search] {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 0;
  font-size: 14px;
}
.shop-sidebar .woocommerce-product-search input[type=search]:focus {
  outline: none;
  border-color: #999;
}
.shop-sidebar .woocommerce-product-search button {
  padding: 10px 15px;
  background: #333;
  border: 1px solid #333;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}
.shop-sidebar .woocommerce-product-search button:hover {
  background: #555;
}
.shop-sidebar .widget_price_filter .widget-title {
  display: none;
}
.shop-sidebar .widget_price_filter .price_slider_wrapper {
  padding: 10px 0;
}
.shop-sidebar .widget_price_filter .price_slider {
  background: #e0e0e0 !important;
  border: none !important;
  height: 4px !important;
  border-radius: 2px !important;
  margin-bottom: 20px;
}
.shop-sidebar .widget_price_filter .price_slider .ui-slider-range {
  background: #333 !important;
  border-radius: 2px !important;
}
.shop-sidebar .widget_price_filter .price_slider .ui-slider-handle {
  background: #333 !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
  width: 16px !important;
  height: 16px !important;
  top: -6px !important;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.shop-sidebar .widget_price_filter .price_slider .ui-slider-handle:focus {
  outline: none;
}
.shop-sidebar .widget_price_filter .price_slider_amount {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.shop-sidebar .widget_price_filter .price_slider_amount .button {
  background: #333 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 8px 20px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer;
  transition: background 0.3s;
  order: 2;
}
.shop-sidebar .widget_price_filter .price_slider_amount .button:hover {
  background: #555 !important;
}
.shop-sidebar .widget_price_filter .price_slider_amount .price_label {
  font-size: 13px;
  color: #666;
  order: 1;
  flex: 1;
}
.shop-sidebar .widget_price_filter .price_slider_amount .clear {
  display: none;
}
.shop-sidebar .product-categories-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop-sidebar .product-categories-list .category-item {
  border-bottom: 1px solid #eee;
  position: relative;
}
.shop-sidebar .product-categories-list .category-item:last-child {
  border-bottom: none;
}
.shop-sidebar .product-categories-list .category-item.has-children .category-link {
  padding-right: 30px;
}
.shop-sidebar .product-categories-list .category-item .category-link {
  display: block;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.shop-sidebar .product-categories-list .category-item .category-link:hover {
  color: #0073aa;
}
.shop-sidebar .product-categories-list .category-item .toggle-children {
  position: absolute;
  right: 0;
  top: 6px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  color: #666;
}
.shop-sidebar .product-categories-list .category-item .toggle-children svg {
  display: block;
  transition: transform 0.3s;
}
.shop-sidebar .product-categories-list .category-item .toggle-children[aria-expanded=true] svg {
  transform: rotate(180deg);
}
.shop-sidebar .product-categories-list .category-item .children {
  list-style: none;
  margin: 0;
  padding: 0 0 0 15px;
  display: none;
  border-left: 2px solid #eee;
}
.shop-sidebar .product-categories-list .category-item .children.open {
  display: block;
}
.shop-sidebar .product-categories-list .category-item .children .child-item a {
  display: block;
  padding: 8px 0;
  color: #666;
  text-decoration: none;
  font-size: 14px;
}
.shop-sidebar .product-categories-list .category-item .children .child-item a:hover {
  color: #0073aa;
}
.shop-sidebar .product-categories-list .category-item .children .child-item .grandchildren {
  list-style: none;
  margin: 0;
  padding: 0 0 0 15px;
}
.shop-sidebar .product-categories-list .category-item .children .child-item .grandchildren li a {
  font-size: 13px;
  color: #888;
}
.shop-sidebar .widget-placeholder {
  font-size: 13px;
  color: #999;
  font-style: italic;
}

.product-gallery-wrapper {
  margin-bottom: 30px;
}
.product-gallery-wrapper .woocommerce-product-gallery {
  position: relative;
}
.product-gallery-wrapper .lph-product-gallery .woocommerce-product-gallery__image,
.product-gallery-wrapper .lph-product-gallery .lph-main-image,
.product-gallery-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__image,
.product-gallery-wrapper .woocommerce-product-gallery .lph-main-image {
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
}
.product-gallery-wrapper .lph-product-gallery .woocommerce-product-gallery__image img,
.product-gallery-wrapper .lph-product-gallery .lph-main-image img,
.product-gallery-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__image img,
.product-gallery-wrapper .woocommerce-product-gallery .lph-main-image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-gallery-wrapper .lph-product-gallery .lph-gallery-thumbnails,
.product-gallery-wrapper .lph-product-gallery .flex-control-thumbs,
.product-gallery-wrapper .woocommerce-product-gallery .lph-gallery-thumbnails,
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.product-gallery-wrapper .lph-product-gallery .lph-gallery-thumbnails li,
.product-gallery-wrapper .lph-product-gallery .lph-gallery-thumbnails .lph-gallery-thumbnail,
.product-gallery-wrapper .lph-product-gallery .flex-control-thumbs li,
.product-gallery-wrapper .lph-product-gallery .flex-control-thumbs .lph-gallery-thumbnail,
.product-gallery-wrapper .woocommerce-product-gallery .lph-gallery-thumbnails li,
.product-gallery-wrapper .woocommerce-product-gallery .lph-gallery-thumbnails .lph-gallery-thumbnail,
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs li,
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs .lph-gallery-thumbnail {
  width: 80px;
  height: 80px;
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.product-gallery-wrapper .lph-product-gallery .lph-gallery-thumbnails li:hover, .product-gallery-wrapper .lph-product-gallery .lph-gallery-thumbnails li.active, .product-gallery-wrapper .lph-product-gallery .lph-gallery-thumbnails li.flex-active,
.product-gallery-wrapper .lph-product-gallery .lph-gallery-thumbnails .lph-gallery-thumbnail:hover,
.product-gallery-wrapper .lph-product-gallery .lph-gallery-thumbnails .lph-gallery-thumbnail.active,
.product-gallery-wrapper .lph-product-gallery .lph-gallery-thumbnails .lph-gallery-thumbnail.flex-active,
.product-gallery-wrapper .lph-product-gallery .flex-control-thumbs li:hover,
.product-gallery-wrapper .lph-product-gallery .flex-control-thumbs li.active,
.product-gallery-wrapper .lph-product-gallery .flex-control-thumbs li.flex-active,
.product-gallery-wrapper .lph-product-gallery .flex-control-thumbs .lph-gallery-thumbnail:hover,
.product-gallery-wrapper .lph-product-gallery .flex-control-thumbs .lph-gallery-thumbnail.active,
.product-gallery-wrapper .lph-product-gallery .flex-control-thumbs .lph-gallery-thumbnail.flex-active,
.product-gallery-wrapper .woocommerce-product-gallery .lph-gallery-thumbnails li:hover,
.product-gallery-wrapper .woocommerce-product-gallery .lph-gallery-thumbnails li.active,
.product-gallery-wrapper .woocommerce-product-gallery .lph-gallery-thumbnails li.flex-active,
.product-gallery-wrapper .woocommerce-product-gallery .lph-gallery-thumbnails .lph-gallery-thumbnail:hover,
.product-gallery-wrapper .woocommerce-product-gallery .lph-gallery-thumbnails .lph-gallery-thumbnail.active,
.product-gallery-wrapper .woocommerce-product-gallery .lph-gallery-thumbnails .lph-gallery-thumbnail.flex-active,
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs li:hover,
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs li.active,
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs li.flex-active,
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs .lph-gallery-thumbnail:hover,
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs .lph-gallery-thumbnail.active,
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs .lph-gallery-thumbnail.flex-active {
  opacity: 1;
}
.product-gallery-wrapper .lph-product-gallery .lph-gallery-thumbnails li img,
.product-gallery-wrapper .lph-product-gallery .lph-gallery-thumbnails .lph-gallery-thumbnail img,
.product-gallery-wrapper .lph-product-gallery .flex-control-thumbs li img,
.product-gallery-wrapper .lph-product-gallery .flex-control-thumbs .lph-gallery-thumbnail img,
.product-gallery-wrapper .woocommerce-product-gallery .lph-gallery-thumbnails li img,
.product-gallery-wrapper .woocommerce-product-gallery .lph-gallery-thumbnails .lph-gallery-thumbnail img,
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs li img,
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs .lph-gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-wrapper .product-category-label {
  display: inline-block;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.product-info-wrapper .product-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.3;
  color: #333;
  margin: 0 0 15px 0;
}
.product-info-wrapper .product-rating {
  margin-bottom: 15px;
}
.product-info-wrapper .product-rating .star-rating {
  font-size: 14px;
}
.product-info-wrapper .product-rating .star-rating span::before {
  color: #f5c518;
}
.product-info-wrapper .product-rating .woocommerce-review-link {
  font-size: 13px;
  color: #666;
  margin-left: 10px;
}
.product-info-wrapper .product-short-description {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}
.product-info-wrapper .product-short-description p {
  margin: 0;
}
.product-info-wrapper .product-price {
  margin-bottom: 20px;
}
.product-info-wrapper .product-price .price {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #333;
}
.product-info-wrapper .product-price .price del {
  color: #999;
  font-size: 18px;
  margin-right: 10px;
}
.product-info-wrapper .product-price .price ins {
  text-decoration: none;
}
.product-info-wrapper .product-add-to-cart {
  margin-bottom: 25px;
}
.product-info-wrapper .product-add-to-cart .cart {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.product-info-wrapper .product-add-to-cart .quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}
.product-info-wrapper .product-add-to-cart .quantity .qty {
  width: 50px;
  text-align: center;
  border: none;
  padding: 10px;
  font-size: 16px;
  -moz-appearance: textfield;
}
.product-info-wrapper .product-add-to-cart .quantity .qty::-webkit-outer-spin-button, .product-info-wrapper .product-add-to-cart .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-info-wrapper .product-add-to-cart .single_add_to_cart_button {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
}
.product-info-wrapper .product-add-to-cart .single_add_to_cart_button:hover {
  background: #555;
}
.product-info-wrapper .product-add-to-cart .variations {
  width: 100%;
  margin-bottom: 15px;
}
.product-info-wrapper .product-add-to-cart .variations tr {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.product-info-wrapper .product-add-to-cart .variations .label {
  font-weight: 500;
  margin-bottom: 5px;
}
.product-info-wrapper .product-add-to-cart .variations .label label {
  font-size: 14px;
  color: #333;
}
.product-info-wrapper .product-add-to-cart .variations .value select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.product-info-wrapper .product-share {
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.product-info-wrapper .product-share .share-label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}
.product-info-wrapper .product-share .share-buttons {
  display: flex;
  gap: 10px;
}
.product-info-wrapper .product-share .share-buttons .share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #666;
  transition: all 0.3s;
}
.product-info-wrapper .product-share .share-buttons .share-btn:hover {
  background: #333;
  color: #fff;
}
.product-info-wrapper .product-share .share-buttons .share-btn svg {
  width: 16px;
  height: 16px;
}

.product-accordions {
  margin-top: 40px;
  border-top: 1px solid #ddd;
}
.product-accordions .accordion-item {
  border-bottom: 1px solid #ddd;
}
.product-accordions .accordion-item .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #333;
  text-align: left;
  transition: color 0.3s;
}
.product-accordions .accordion-item .accordion-header:hover {
  color: #0073aa;
}
.product-accordions .accordion-item .accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}
.product-accordions .accordion-item .accordion-header .accordion-icon {
  transition: transform 0.3s;
  color: #666;
}
.product-accordions .accordion-item .accordion-content {
  display: none;
  padding: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}
.product-accordions .accordion-item .accordion-content p {
  margin: 0 0 10px 0;
}
.product-accordions .accordion-item .accordion-content p:last-child {
  margin-bottom: 0;
}
.product-accordions .accordion-item .accordion-content .product-attributes {
  width: 100%;
}
.product-accordions .accordion-item .accordion-content .product-attributes th {
  text-align: left;
  font-weight: 500;
  color: #333;
  padding: 8px 15px 8px 0;
  width: 30%;
}
.product-accordions .accordion-item .accordion-content .product-attributes td {
  padding: 8px 0;
}

.product-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}
.product-contact .contact-icon {
  color: #666;
}
.product-contact .contact-icon svg {
  width: 24px;
  height: 24px;
}
.product-contact .contact-text {
  font-size: 14px;
  color: #666;
}
.product-contact .contact-text a {
  color: #0073aa;
  text-decoration: underline;
}
.product-contact .contact-text a:hover {
  text-decoration: none;
}

.product-reviews-section {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}
.product-reviews-section .reviews-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #333;
  margin-bottom: 25px;
}
.product-reviews-section #reviews .woocommerce-Reviews-title {
  display: none;
}
.product-reviews-section #reviews .commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-reviews-section #reviews .commentlist .comment {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.product-reviews-section #reviews .commentlist .comment .comment_container {
  display: flex;
  gap: 15px;
}
.product-reviews-section #reviews .commentlist .comment .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.product-reviews-section #reviews .commentlist .comment .comment-text {
  flex: 1;
}
.product-reviews-section #reviews .commentlist .comment .comment-text .star-rating {
  margin-bottom: 8px;
}
.product-reviews-section #reviews .commentlist .comment .comment-text .meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}
.product-reviews-section #reviews .commentlist .comment .comment-text .meta strong {
  color: #333;
}
.product-reviews-section #reviews .commentlist .comment .comment-text .description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}
.product-reviews-section #reviews #review_form_wrapper {
  margin-top: 30px;
}
.product-reviews-section #reviews #review_form_wrapper .comment-reply-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.product-reviews-section #reviews #review_form_wrapper .comment-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.product-reviews-section #reviews #review_form_wrapper .comment-form input[type=text],
.product-reviews-section #reviews #review_form_wrapper .comment-form input[type=email],
.product-reviews-section #reviews #review_form_wrapper .comment-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 14px;
}
.product-reviews-section #reviews #review_form_wrapper .comment-form textarea {
  min-height: 120px;
}
.product-reviews-section #reviews #review_form_wrapper .comment-form .form-submit input[type=submit] {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}
.product-reviews-section #reviews #review_form_wrapper .comment-form .form-submit input[type=submit]:hover {
  background: #555;
}

@media screen and (max-width: 991px) {
  .product-category-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .shop-sidebar {
    margin-bottom: 40px;
  }
  .product-info-wrapper {
    margin-top: 30px;
  }
  .product-info-wrapper .product-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .product-category-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .product-info-wrapper .product-add-to-cart .cart {
    flex-direction: column;
    align-items: stretch;
  }
  .product-info-wrapper .product-add-to-cart .cart .quantity {
    justify-content: center;
  }
  .product-info-wrapper .product-add-to-cart .cart .single_add_to_cart_button {
    width: 100%;
    text-align: center;
  }
  .product-accordions .accordion-item .accordion-header {
    font-size: 14px;
    padding: 15px 0;
  }
  .product-contact {
    flex-direction: column;
    text-align: center;
  }
}
/*
WooCommerce Global Overrides
*/
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce .button {
  background-color: #333 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: background-color 0.3s !important;
}
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover,
.woocommerce .button:hover {
  background-color: #555 !important;
  color: #fff !important;
}
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt,
.woocommerce .button.alt {
  background-color: #333 !important;
}
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce .button.alt:hover {
  background-color: #555 !important;
}
.woocommerce button.button.disabled, .woocommerce button.button:disabled,
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce .button.disabled,
.woocommerce .button:disabled {
  background-color: #ccc !important;
  color: #666 !important;
}
.woocommerce .single_add_to_cart_button {
  background-color: #333 !important;
  color: #fff !important;
}
.woocommerce .single_add_to_cart_button:hover {
  background-color: #555 !important;
}

.woocommerce-product-gallery__trigger {
  display: none !important;
}

.woocommerce-product-gallery .flex-viewport {
  border-radius: 8px;
  overflow: hidden;
}
.woocommerce-product-gallery .woocommerce-product-gallery__image > a::after {
  display: none !important;
}

.pswp .pswp__bg {
  background: rgba(0, 0, 0, 0.9) !important;
}
.pswp .pswp__button {
  background-color: transparent !important;
}

.archive-category-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  font-size: 36px;
  text-align: center;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 30px 0 40px;
}

.archive-product-container {
  margin-top: 30px;
  margin-bottom: 60px;
}

.products-archive-content .products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.products-archive-content .products::before, .products-archive-content .products::after {
  display: none !important;
  content: none !important;
}

.product-card {
  background: #fff;
  margin-bottom: 20px;
}
.product-card .product-card-image {
  margin-bottom: 15px;
  background: #f8f8f8;
  overflow: hidden;
}
.product-card .product-card-image a {
  display: block;
}
.product-card .product-card-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}
.product-card .product-card-image:hover img {
  transform: scale(1.03);
}
.product-card:nth-child(odd) .product-card-image {
  border-radius: 20% 0 0 20%;
}
.product-card:nth-child(even) .product-card-image {
  border-radius: 0 20% 20% 0;
}
.product-card .product-card-info {
  padding: 0 5px;
}
.product-card .product-card-category {
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  margin-bottom: 5px;
}
.product-card .product-card-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 8px 0;
}
.product-card .product-card-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.product-card .product-card-title a:hover {
  color: #0073aa;
}
.product-card .product-card-rating {
  margin-bottom: 10px;
}
.product-card .product-card-rating .star-rating {
  font-size: 12px;
}
.product-card .product-card-rating .star-rating::before {
  content: "sssss";
  color: #ddd;
}
.product-card .product-card-rating .star-rating span::before {
  color: #f5c518;
}
.product-card .product-card-description {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
}
.product-card .product-card-description p {
  margin: 0;
}
.product-card .product-card-price {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}
.product-card .product-card-price .price del {
  color: #999;
  font-size: 14px;
  margin-right: 8px;
}
.product-card .product-card-price .price ins {
  text-decoration: none;
}
.product-card .product-card-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-card .product-card-buttons .btn-find-out-more,
.product-card .product-card-buttons .btn-add-to-cart {
  display: inline-block;
  padding: 10px 18px;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
  border: 1px solid #333;
  border-radius: 20px;
  transition: all 0.3s;
}
.product-card .product-card-buttons .btn-find-out-more {
  background: #fff;
  color: #333;
}
.product-card .product-card-buttons .btn-find-out-more:hover {
  background: #333;
  color: #fff;
}
.product-card .product-card-buttons .btn-add-to-cart {
  background: #fff;
  color: #333;
}
.product-card .product-card-buttons .btn-add-to-cart:hover {
  background: #333;
  color: #fff;
}

.recently-viewed-section .recently-viewed-products .recently-viewed-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.recently-viewed-section .recently-viewed-products .recently-viewed-item:last-child {
  border-bottom: none;
}
.recently-viewed-section .recently-viewed-products .recently-viewed-item .item-image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
}
.recently-viewed-section .recently-viewed-products .recently-viewed-item .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recently-viewed-section .recently-viewed-products .recently-viewed-item .item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recently-viewed-section .recently-viewed-products .recently-viewed-item .item-info .item-title {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 4px;
}
.recently-viewed-section .recently-viewed-products .recently-viewed-item .item-info .item-title:hover {
  color: #0073aa;
}
.recently-viewed-section .recently-viewed-products .recently-viewed-item .item-info .item-price {
  font-size: 12px;
  color: #666;
}
.recently-viewed-section .recently-viewed-products .no-viewed-products {
  font-size: 13px;
  color: #888;
  font-style: italic;
}

.products-pagination {
  margin-top: 40px;
  text-align: center;
}
.products-pagination .woocommerce-pagination ul {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}
.products-pagination .woocommerce-pagination ul li a,
.products-pagination .woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  transition: all 0.3s;
}
.products-pagination .woocommerce-pagination ul li a:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}
.products-pagination .woocommerce-pagination ul li span.current {
  background: #333;
  color: #fff;
  border-color: #333;
}

.no-products-found {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
  border-radius: 8px;
}
.no-products-found p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .archive-category-title {
    font-size: 28px;
  }
  .products-archive-content .products {
    gap: 20px;
  }
  .product-card .product-card-title {
    font-size: 16px;
  }
  .product-card .product-card-buttons .btn-find-out-more,
  .product-card .product-card-buttons .btn-add-to-cart {
    padding: 8px 14px;
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .archive-category-title {
    font-size: 24px;
    margin: 20px 0;
  }
  .archive-product-container .shop-sidebar {
    margin-bottom: 30px;
  }
  .products-archive-content .products {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .product-card:nth-child(odd) .product-card-image, .product-card:nth-child(even) .product-card-image {
    border-radius: 15% 15% 0 0;
  }
  .product-card .product-card-buttons {
    flex-direction: column;
  }
  .product-card .product-card-buttons .btn-find-out-more,
  .product-card .product-card-buttons .btn-add-to-cart {
    text-align: center;
  }
}
/*
Contact Form 7 Styles
*/
.wpcf7 .cf7-form-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: #666;
  margin: 0 0 25px 0;
}
.wpcf7 .wpcf7-form p {
  margin: 0 0 15px 0;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7 .wpcf7-form input[type=text],
.wpcf7 .wpcf7-form input[type=email],
.wpcf7 .wpcf7-form input[type=tel],
.wpcf7 .wpcf7-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  background: #fff;
  transition: border-color 0.3s ease;
}
.wpcf7 .wpcf7-form input[type=text]::placeholder,
.wpcf7 .wpcf7-form input[type=email]::placeholder,
.wpcf7 .wpcf7-form input[type=tel]::placeholder,
.wpcf7 .wpcf7-form textarea::placeholder {
  color: #999;
}
.wpcf7 .wpcf7-form input[type=text]:focus,
.wpcf7 .wpcf7-form input[type=email]:focus,
.wpcf7 .wpcf7-form input[type=tel]:focus,
.wpcf7 .wpcf7-form textarea:focus {
  outline: none;
  border-color: #999;
}
.wpcf7 .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}
.wpcf7 .wpcf7-form input[type=submit] {
  background: #4a4a4a;
  color: #fff;
  border: none;
  padding: 15px 50px;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 0;
}
.wpcf7 .wpcf7-form input[type=submit]:hover {
  background: #333;
}
.wpcf7 .wpcf7-form .cf7-disclaimer {
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  color: #999;
  margin-top: 20px;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #dc3545 !important;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}
.wpcf7 .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 15px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.wpcf7 .wpcf7-mail-sent-ok {
  border-color: #28a745;
  color: #28a745;
}
.wpcf7 .wpcf7-mail-sent-ng {
  border-color: #dc3545;
  color: #dc3545;
}

.thick-padding .vc_column-inner {
  padding: 40px !important;
}
@media screen and (max-width: 767px) {
  .thick-padding .vc_column-inner {
    padding: 15px !important;
  }
}

.woocommerce nav.woocommerce-pagination .page-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  border: 0;
}
.woocommerce nav.woocommerce-pagination .page-numbers li {
  margin: 0;
  border-right: 0;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a, .woocommerce nav.woocommerce-pagination .page-numbers li span {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  border: 2px solid #B2B2B2;
  border-radius: 24px;
  transition: all 0.3s ease;
  height: 40px;
  width: 40px;
  vertical-align: middle;
  display: table-cell;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a:hover, .woocommerce nav.woocommerce-pagination .page-numbers li span:hover {
  background-color: #3c3c3c;
  border-color: #3c3c3c;
  color: #fff;
}
.woocommerce nav.woocommerce-pagination .page-numbers li .current {
  background-color: #3c3c3c;
  border-color: #3c3c3c;
  color: #fff;
}
.woocommerce nav.woocommerce-pagination .page-numbers li .dots {
  border: none;
  padding: 8px 5px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li .dots:hover {
  background-color: transparent;
  color: #666;
}

.social-links {
  margin-bottom: 20px;
}
.social-links a {
  display: inline-block;
  margin: 0 10px;
  font-size: 28px;
  color: inherit; /* or your preferred color */
  text-decoration: none;
}
.social-links a:first-child {
  margin-left: 0;
}
.social-links a:hover {
  opacity: 0.7;
}
