.header {
  background: white;
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 0;
}
@media (max-width: 1200px) {
  .header.scroll {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.1);
  }
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header-cart {
  position: relative;
}
.header-cart.mobile {
  position: fixed;
  bottom: 17px;
  right: 20px;
  display: none;
  z-index: 999;
}
@media (max-width: 1200px) {
  .header-cart.mobile {
    display: block;
  }
}
.header-button-cart {
  padding: 13px 12px;
  background-color: #fbbf24;
  border-radius: 100%;
  line-height: 1;
  display: block;
}
@media (max-width: 1200px) {
  .header-button-cart {
    padding: 16px 15px;
    font-size: 22px;
  }
}
.header-cart-count {
  position: absolute;
  right: -5px;
  top: -3px;
  background-color: #1f2937;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 2px 4px;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .header-cart-count {
    font-size: 14px;
    padding: 4px 5px;
  }
}
.logo {
  width: 200px;
}
@media (max-width: 768px) {
  .logo {
    width: 150px;
  }
}
@media (max-width: 480px) {
  .logo {
    width: 120px;
  }
}
@media (max-width: 400px) {
  .logo {
    width: 95px;
  }
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (max-width: 1200px) {
  .contact-info {
    display: none;
  }
}
.contact-info i {
  color: #1f2937;
}
.contact-details {
  font-size: 0.875rem;
  color: #6b7280;
}
.contact-main {
  text-align: right;
}
.location {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  align-items: center;
}
.schedule {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.phone {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
}
.email {
  font-size: 0.875rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navigation {
  background: #f9fafb;
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 1200px) {
  .navigation {
    display: none;
  }
}
@media (min-width: 1201px) {
  .navigation.scroll {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 998;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  }
}
.nav-links {
  display: flex;
  gap: 20px;
  padding: 1rem 0;
  align-items: center;
  list-style: none;
  margin-bottom: 0px;
}
.nav-links > .menu-item-has-children {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.nav-links > .menu-item-has-children::after {
  content: "\f078";
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transform: rotate(360deg);
  transition: 0.5s all ease;
}
.nav-links > .menu-item-has-children:hover > a {
  color: #efaf0d;
}
.nav-links > .menu-item-has-children:hover::after {
  transform: rotate(180deg);
  color: #efaf0d;
}
.nav-links > .menu-item-has-children.current-menu-item:hover > a {
  color: #1f2937;
}
.nav-links > .menu-item-has-children.current-menu-item:hover::after {
  color: #efaf0d;
}
.nav-links > li {
  position: relative;
}
.nav-links > li .sub-menu {
  position: absolute;
  left: -100%;
  opacity: 0;
  top: 25px;
  list-style: none;
  border-radius: 10px;
  overflow: hidden;
  padding-left: 0;
  padding: 32px 10px 32px 10px;
  animation-name: circle-to-square-1;
  animation-duration: 0.5s;
  display: none;
  z-index: 9;
  width: 500px;
  flex-wrap: wrap;
  gap: 6px;
}
@media (max-width: 1200px) {
  .nav-links > li .sub-menu {
    display: block;
  }
}
.nav-links > li .sub-menu > li {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 8px 1px rgba(81, 92, 109, 0.1);
  width: calc(100% / 2 - 6px);
}
.nav-links > li .sub-menu > li > a {
  padding: 12px 24px;
  display: flex;
  line-height: 1;
  height: 100%;
  align-items: center;
}
.nav-links > li:hover .sub-menu {
  display: flex;
  left: -10px;
  opacity: 1;
  animation-name: circle-to-square;
  animation-duration: 1s;
}
.nav-links > .current_page_item > a,
.nav-links > .current-menu-item > a {
  background-color: #fbbf24;
  padding: 2px 14px;
  border-radius: 50px;
  box-shadow: 0px 0px 8px 1px rgba(81, 92, 109, 0.1);
}
.nav-links > .current_page_item > a:hover,
.nav-links > .current-menu-item > a:hover {
  color: #1f2937;
}
@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.nav-links a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #efaf0d;
}
.nav-links a.active {
  background-color: #fbbf24;
  padding: 2px 14px;
  border-radius: 50px;
  box-shadow: 0px 0px 8px 1px rgba(81, 92, 109, 0.1);
}
.nav-links a.active:hover {
  color: #1f2937;
}
/* Mobile burger */
.mobile-menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: none;
  background: #fbbf24;
  align-items: center;
  justify-content: center;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 1201px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1f2937;
  margin: 3px 0;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Mobile offcanvas menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease, visibility 0.25s ease;
}
@media (min-width: 1201px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu .search-container {
  display: block;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(1px);
}
.mobile-menu.open > .mobile-menu__panel {
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.mobile-menu__logo {
  width: 160px;
}
.mobile-menu__panel {
  width: 82%;
  max-width: 360px;
  height: 100%;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow: auto;
}
.mobile-menu > .mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 10px;
  list-style: none;
  margin-bottom: 0px;
}
.mobile-menu__links a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  width: 100%;
  display: block;
}
.mobile-menu__links a.active {
  background: #fbbf24;
}
.mobile-menu__contacts {
  padding: 16px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu-close {
  border: none;
  background: #f9fafb;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.nav-footer {
  list-style: none;
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  justify-content: flex-end;
  gap: 20px;
}
@media (max-width: 991px) {
  .nav-footer {
    justify-content: center;
  }
}
.pagination {
  align-items: center;
  justify-content: center;
  background: none;
  border-bottom: none;
}
.pagination .nav-links {
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers {
  background-color: #f1f3f7;
  padding: 11px 16px;
  color: #505661;
  border-radius: 7px;
  line-height: 1;
}
.pagination .page-numbers.current {
  background-color: #fbbf24 !important;
  font-weight: 600;
  color: #1f2937;
  box-shadow: 0px 0px 8px 1px rgba(81, 92, 109, 0.1);
}
@keyframes circle-to-square {
  from {
    left: -100%;
    opacity: 0;
  }
  to {
    left: -10px;
    opacity: 1;
  }
}
@media (max-width: 1200px) {
  .nav.navbar-nav li.menu-item .menu-item__panel {
    display: none;
  }
  .nav.navbar-nav li.menu-item.submenu-open > .menu-item__panel {
    display: block;
  }
  .current-menu-item > .menu-item__head {
    background: #fbbf24;
    padding: 0px 10px;
    border-radius: 10px;
  }
  .current-menu-item > .menu-item__head a {
    background: none !important;
  }
}
.submenu-open.open .submenu-toggle {
  transform: rotate(180deg);
}
.submenu-toggle {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-item__panel {
  display: none;
  background-color: #f1f3f7;
  margin-top: 12px;
  border-radius: 10px;
}
.menu-item__panel > .sub-menu {
  list-style: none;
  padding-left: 0px;
  padding: 4px 10px;
}
@media (max-width: 1200px) {
  .menu-item__head {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.mobile-contacts {
  display: none;
}
@media (max-width: 1200px) {
  .mobile-contacts {
    display: block;
  }
  .mobile-contacts .email {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 480px) {
  .mobile-contacts .phone {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .mobile-contacts .phone {
    font-size: 14px;
  }
  .mobile-contacts .email {
    font-size: 15px;
  }
}
/* Footer */
.footer {
  background: #1f2937;
  color: #fff;
  padding: 3rem 0 1rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo__text {
  color: #9ca3af;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .footer-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.8s;
}
.footer-section a:hover {
  color: #fbbf24;
}
.footer-section__more a {
  color: #fbbf24;
  align-items: center;
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
@media (max-width: 575px) {
  .footer-section__more a {
    justify-content: center;
  }
}
.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-section ul {
  list-style: none;
  padding-left: 0;
}
.footer-section ul li {
  margin-bottom: 0.3rem;
}
.footer-contacts p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.footer-contacts i {
  margin-right: 6px;
}
.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
@media (max-width: 1400px) {
  .footer-bottom {
    text-align: center !important;
  }
}
.footer-bottom span {
  color: #fbbf24;
}
.footer-bottom a {
  color: #9ca3af;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.8s;
}
.footer-bottom a:hover {
  color: #fbbf24;
}
.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0;
}
.button {
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0px 0px 8px 1px rgba(81, 92, 109, 0.1);
}
.button-primary {
  background: #fbbf24;
  color: #222;
}
.button-primary:hover {
  background: #efaf0d;
}
.breadcrumbs {
  background-color: #f9fafb;
}
.breadcrumbs__title {
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .breadcrumbs__title {
    font-size: 26px;
  }
}
.breadcrumbs__content {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.breadcrumbs__content div.active {
  color: #1f2937;
  font-weight: 600;
  background-color: #fbbf24;
  padding: 0px 10px;
  border-radius: 6px;
}
.breadcrumbs__content-item {
  display: flex;
}
.breadcrumbs__content-item::after {
  content: "/";
  display: block;
  text-decoration: none;
  margin-left: 10px;
}
.breadcrumbs__content-item a {
  display: flex;
  text-decoration: none;
  transition: 0.3s all ease;
}
.breadcrumbs__content-item a:hover {
  color: #fbbf24;
}
button[type="submit"],
input[type="submit"] {
  background: #fbbf24;
  color: black;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: #f59e0b;
}
input,
textarea {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
input:focus,
textarea:focus {
  border-color: #fbbf24;
}
.wpcf7-form p {
  margin-bottom: 0;
}
.wpcf7-form.sent .wpcf7-response-output {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 10px solid #fbbf24 !important;
  border-radius: 14px;
  font-weight: 600;
}
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.submmiting .wpcf7-response-output {
  display: none;
}
.wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  background-color: #1f2937 !important;
}
.wpcf7-spinner::before {
  background-color: #fbbf24 !important;
}
.wpcf7-not-valid {
  border: 2px solid #cb0000 !important;
}
.wpcf7-not-valid-tip {
  display: none !important;
}
.policy {
  font-size: 14px;
  margin-bottom: 10px;
}
.policy-catalog {
  font-size: 14px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 4px;
  border-radius: 5px;
  text-align: left;
}
@media (max-width: 768px) {
  .policy-catalog {
    background-color: #ffffff;
  }
}
.modal-form {
  background-color: transparent;
}
.modal-form .form-card {
  position: static;
}
@media (max-width: 520px) {
  .modal-form {
    padding: 12px;
  }
}
.modal-form .f-button.is-close-btn {
  background-color: #fbbf24;
  color: #000;
  opacity: 1;
  top: 47px;
  right: 46px;
}
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
  height: 100%;
}
.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0px 32px;
}
@media (max-width: 480px) {
  .hero-slider .owl-nav {
    display: none;
  }
}
.hero-slider .owl-prev,
.hero-slider .owl-next {
  width: 48px;
  height: 48px;
  background-color: #fbbf24 !important;
  display: block;
  border-radius: 100%;
  box-shadow: 0px 0px 8px 1px rgba(81, 92, 109, 0.1);
}
.hero-slider .owl-prev.disabled,
.hero-slider .owl-next.disabled {
  opacity: 0.5;
}
.hero-slider .owl-dots {
  position: absolute;
  bottom: 48px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-slider .owl-dot {
  width: 14px;
  height: 14px;
  border-radius: 10px;
  border: 2px solid #fff !important;
}
.hero-slider .owl-dot.active {
  background-color: #fff;
}
.hero-title {
  background: #fbbf24;
  color: #222;
  padding: 1rem 2rem;
  font-size: 2.5rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero-title.dark {
  background-color: #222;
  color: #fbbf24;
}
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 1.9rem;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.25rem;
  }
}
.hero-subtitle {
  font-size: 1.25rem;
  margin-top: 1rem;
}
.hero-subtitle.dark {
  color: #222;
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
  }
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}
@media (max-width: 480px) {
  .slide-content {
    width: 100%;
  }
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1.5rem;
}
.services {
  background-image: url(assets/images/bg_1.png);
  background-repeat: no-repeat;
}
.services-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
}
@media (max-width: 991px) {
  .services-title {
    font-size: 1.9rem;
  }
}
@media (max-width: 580px) {
  .services-title {
    font-size: 1.7rem;
  }
}
.services-more a {
  text-decoration: none;
  padding: 10px 24px;
  background: #fbbf24;
  color: #222;
  font-weight: 600;
  border-radius: 100px;
  box-shadow: 0px 0px 8px 1px rgba(81, 92, 109, 0.1);
}
@media (max-width: 580px) {
  .services-more a {
    padding: 6px 16px;
    font-size: 14px;
  }
}
.service-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.1);
  transition: box-shadow 0.3s;
  height: 100%;
  display: block;
  text-decoration: none;
}
.service-card:hover {
  box-shadow: 0 10px 25px rgba(81, 92, 109, 0.15);
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  flex: 1;
}
.service-card p {
  color: #6b7280;
  margin-bottom: 1rem;
}
.service-card:hover {
  background-color: #f9fafb;
}
.service-icon {
  width: 52px;
  height: 52px;
  margin-right: 24px;
}
.service-button {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid #fbbf24;
  color: #fbbf24;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.service-button:hover {
  background: #efaf0d;
}
.service-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.service-card-detailed {
  background: white;
  border-radius: 8px;
  box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.1);
  transition: box-shadow 0.3s;
  height: 100%;
  display: block;
  text-decoration: none;
}
.service-image {
  padding: 1rem;
  height: 200px;
}
.service-image img {
  object-fit: cover;
  border-radius: 9px;
}
.service-content {
  padding: 2rem;
  padding-top: 10px;
  height: calc(100% - 200px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-content a {
  background: #fbbf24;
  color: #222;
  padding: 10px 32px;
  border-radius: 8px;
  text-decoration: none;
  width: max-content;
  line-height: 1;
}
.service-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 18px;
  color: #1f2937;
}
.service-text {
  line-height: 1.3;
  color: #6b7280;
  margin-bottom: 32px;
}
.services-overview {
  background-image: url(assets/images/bg_1.png);
  background-repeat: no-repeat;
}
.service-single-content h2 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}
.service-single-content .lead {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}
.service-single-description {
  line-height: 1.8;
  color: #555;
}
.service-single-description h3 {
  color: #333;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.service-single-description p {
  margin-bottom: 1rem;
}
.service-single-description ul,
.service-single-description ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.service-single-description ul li,
.service-single-description ol li {
  margin-bottom: 0.5rem;
}
.service-single-features {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}
.service-single-features h3 {
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}
.service-single-features .feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.service-single-features .feature-item h5 {
  color: #007bff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.service-single-features .feature-item p {
  color: #666;
  margin: 0;
}
.service-single-specifications {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}
.service-single-specifications h3 {
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}
.service-single-specifications ul {
  list-style: none;
  padding: 0;
}
.service-single-specifications ul li {
  background: white;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.service-single-materials {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}
.service-single-materials h3 {
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}
.service-single-materials .material-item {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.service-single-materials .material-item h5 {
  color: #28a745;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.service-single-materials .material-item p {
  color: #666;
  margin: 0;
}
.service-single-applications {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}
.service-single-applications h3 {
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}
.service-single-applications ul {
  list-style: none;
  padding: 0;
}
.service-single-applications ul li {
  background: white;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.service-single-examples {
  margin-top: 2rem;
}
.service-single-examples h3 {
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}
.service-single-examples .example-item {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.service-single-examples .example-item img {
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.service-single-examples .example-item img:hover {
  transform: scale(1.05);
}
.service-single-category {
  text-align: center;
  margin-top: 2rem;
}
.service-single-category h4 {
  color: #333;
  margin-bottom: 1rem;
}
.service-single-card-sidebar {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #007bff;
}
.service-single-card-sidebar h4 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}
.service-single-card-sidebar p {
  color: #666;
  margin-bottom: 1rem;
}
.service-single-card-sidebar .btn {
  width: 100%;
  margin-bottom: 0.5rem;
}
.service-single-features-list {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #28a745;
}
.service-single-features-list h4 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}
.service-single-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-single-features-list ul li {
  color: #666;
  margin-bottom: 0.5rem;
  padding-left: 0;
}
.service-single-features-list ul li:before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  margin-right: 0.5rem;
}
.contact-cta {
  background-image: url(assets/images/services/servicer-bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-color: #f9fafb;
  position: relative;
}
@media (max-width: 1600px) {
  .contact-cta {
    background-image: url(assets/images/services/servicer-bg_1.png);
  }
}
.contact-cta .container {
  position: relative;
}
.contact-cta h2 {
  margin-bottom: 1rem;
}
.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
@media (max-width: 1700px) {
  .contact-cta p {
    color: #1f2937 !important;
  }
}
.contact-cta .button {
  text-decoration: none;
}
.services-archive .services-filter .category-buttons .btn {
  margin: 0.25rem;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.services-archive .services-filter .category-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.services-archive .service-card-archive {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}
.services-archive .service-card-archive:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.services-archive .service-card-archive .service-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.services-archive .service-card-archive .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.services-archive .service-card-archive .service-image:hover img {
  transform: scale(1.1);
}
.services-archive .service-card-archive .service-content {
  padding: 1.5rem;
}
.services-archive .service-card-archive .service-content h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.services-archive .service-card-archive .service-content h3 a {
  color: #333;
  text-decoration: none;
}
.services-archive .service-card-archive .service-content h3 a:hover {
  color: #007bff;
}
.services-archive .service-card-archive .service-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.services-archive .service-card-archive .service-content .service-category {
  margin-bottom: 1rem;
}
.services-archive .service-card-archive .service-content .service-category .badge {
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
}
.services-archive .service-card-archive .service-content .service-price {
  margin-bottom: 1rem;
  color: #28a745;
  font-size: 1.1rem;
}
.services-archive .service-card-archive .service-content .service-actions {
  display: flex;
  gap: 0.5rem;
}
.services-archive .service-card-archive .service-content .service-actions .btn {
  flex: 1;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}
.category-description .category-content h2 {
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.category-description .category-content .category-text {
  line-height: 1.8;
  color: #555;
  font-size: 1.1rem;
}
.services-category h2 {
  color: #333;
  font-weight: 600;
}
.other-categories .category-buttons .btn {
  margin: 0.25rem;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.other-categories .category-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .service-details .service-content .service-features,
  .service-details .service-content .service-specifications,
  .service-details .service-content .service-materials,
  .service-details .service-content .service-applications {
    padding: 1rem;
  }
  .service-details .service-content .feature-item,
  .service-details .service-content .material-item {
    margin-bottom: 1rem;
  }
  .service-details .service-sidebar {
    margin-top: 2rem;
  }
  .related-services .service-card-small {
    margin-bottom: 1rem;
  }
  .services-archive .services-filter .category-buttons .btn {
    margin: 0.25rem;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
  .services-archive .service-card-archive .service-content {
    padding: 1rem;
  }
  .services-archive .service-card-archive .service-content .service-actions {
    flex-direction: column;
  }
  .services-archive .service-card-archive .service-content .service-actions .btn {
    margin-bottom: 0.5rem;
  }
}
.photo-content_4x {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.photo-content_4x img {
  object-fit: cover;
}
.photo-content_1x {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.photo-content_1x img {
  object-fit: cover;
}
.about {
  background-image: url(assets/images/about/about-bg.jpg);
  background-position: top right;
  background-repeat: no-repeat;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-overlay {
  display: none;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 10px;
}
@media (max-width: 1600px) {
  .about-overlay {
    display: block;
  }
}
.about-text {
  padding-left: 32px;
  position: relative;
}
@media (max-width: 1600px) {
  .about-text {
    padding: 32px;
  }
}
.about-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
}
.about-text p {
  color: #6b7280;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .about-text .section-title_left {
    text-align: center;
  }
}
.about-img {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-page {
  background-image: url(assets/images/about/about-bg.jpg);
  background-position: top right;
  background-repeat: no-repeat;
}
.partners {
  background: white;
}
.partners .section-title {
  text-align: left;
}
.partners .owl-stage-outer,
.partners .owl-stage,
.partners .owl-item {
  height: 100%;
}
.partners .owl-nav {
  position: absolute;
  top: -115%;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.partners .owl-prev,
.partners .owl-next {
  width: 48px;
  height: 48px;
  background-color: #fbbf24 !important;
  display: block;
  border-radius: 100%;
  box-shadow: 0px 0px 8px 1px rgba(81, 92, 109, 0.1);
}
.partners .owl-prev.disabled,
.partners .owl-next.disabled {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .partners .section-title_left {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .partners .section-title_left h2::before {
    content: "";
  }
}
.partner-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background: #f9fafb;
  border-radius: 8px;
  transition: background-color 0.3s;
  cursor: pointer;
}
.partner-item:hover {
  background: #f3f4f6;
}
.partner-item:hover img {
  opacity: 1;
}
.partner-item img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.partner-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.partner-description p {
  color: #6b7280;
}
.advantages {
  padding-top: 0 !important;
}
.advantages-item {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.advantages-number {
  font-size: 16px;
  font-weight: bold;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 6px;
}
.advantages-label {
  font-size: 0.875rem;
  color: #6b7280;
}
.advantages-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 12px;
}
@media (max-width: 440px) {
  .advantages-icon {
    width: 70px;
    height: 70px;
  }
}
/* Portfolio Section */
.portfolio {
  background: #f9fafb;
}
.portfolio-service {
  margin-top: 7rem;
}
.portfolio .section-title {
  text-align: left;
}
@media (max-width: 767px) {
  .portfolio .section-title_left {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .portfolio .section-title_left h2::before {
    content: "";
  }
}
.portfolio .owl-stage-outer,
.portfolio .owl-stage,
.portfolio .owl-item {
  height: 100%;
}
.portfolio .owl-nav {
  position: absolute;
  top: -45%;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 1400px) {
  .portfolio .owl-nav {
    top: -51%;
  }
}
@media (max-width: 1200px) {
  .portfolio .owl-nav {
    top: -61%;
  }
}
@media (max-width: 991px) {
  .portfolio .owl-nav {
    top: -81%;
  }
}
.portfolio .owl-prev,
.portfolio .owl-next {
  width: 48px;
  height: 48px;
  background-color: #fbbf24 !important;
  display: block;
  border-radius: 100%;
  box-shadow: 0px 0px 8px 1px rgba(81, 92, 109, 0.1);
}
.portfolio .owl-prev.disabled,
.portfolio .owl-next.disabled {
  opacity: 0.5;
}
.portfolio-item {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 300px;
}
@media (max-width: 768px) {
  .portfolio-item {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .portfolio-item {
    height: 215px;
  }
}
@media (max-width: 420px) {
  .portfolio-item {
    height: 170px;
  }
}
.portfolio-item img {
  transition: 0.3s all ease-in;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-item:hover .portfolio-title {
  opacity: 0;
}
.portfolio-item:hover .portfolio-image {
  filter: grayscale(1) blur(2px);
}
.portfolio-image {
  height: 100%;
}
.portfolio-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.portfolio-zoom {
  width: 64px;
  height: 64px;
}
.portfolio-zoom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.portfolio-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in;
}
@media (max-width: 991px) {
  .portfolio-title {
    bottom: 10px;
    left: 10px;
  }
}
.portfolio-title div {
  color: #222;
  font-size: 12px;
  font-weight: 700;
  background-color: #fbbf24;
  padding: 6px 10px;
  line-height: 1;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .portfolio-title div {
    font-size: 10px;
  }
}
.portfolio-overlay {
  position: absolute;
  background-color: rgba(251, 191, 36, 0.9);
  top: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s all ease-in;
}
.portfolio-info {
  text-align: center;
}
.portfolio-info__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.portfolio-info__button {
  outline: none;
  border: none;
  padding: 8px 20px;
  border-radius: 24px;
  box-shadow: 0px 0px 8px 1px rgba(81, 92, 109, 0.1);
}
.portfolio-page {
  padding-bottom: 0px !important;
}
.portfolio-product {
  margin-bottom: 7rem;
}
.custom-slider {
  padding: 20px 6px;
  border-radius: 12px;
}
.custom-slider .owl-nav {
  top: -30%;
  right: -17px;
}
@media (max-width: 440px) {
  .portfolio-service .portfolio-item {
    height: 300px !important;
  }
}
.contacts {
  background: #f9fafb;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 575px) {
  .contact-item {
    align-items: center;
    text-align: center;
  }
}
.contact-item__top {
  display: flex;
  align-items: center;
  gap: 13px;
}
.contact-item__top i {
  color: #fbbf24;
  font-size: 1.5rem;
}
.contact-item__top h3 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0rem;
  line-height: 1;
}
.contact-item__top p {
  color: #6b7280;
}
.contact-item__bottom p {
  margin-bottom: 0px;
}
.contact-form {
  position: relative;
}
.contact-form__map {
  border-radius: 16px;
  overflow: hidden;
}
.form-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.2);
  position: absolute;
  top: 29px;
  right: 100px;
  max-width: 400px;
  width: 100%;
}
.form-card .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}
.form-card .form-control:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}
.form-card .form-control::placeholder {
  color: #9ca3af;
}
@media (max-width: 991px) {
  .form-card {
    position: relative;
    left: 0;
    max-width: none;
  }
}
.form-card h3 {
  font-size: 24px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 6px;
}
.form-card > p {
  margin-bottom: 24px;
}
.form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-card textarea {
  height: 100px;
}
.form-submit {
  background: #fbbf24;
  color: black;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.form-submit:hover {
  background: #f59e0b;
}
.page-contacts {
  padding-bottom: 0px !important;
}
.feedback {
  padding-top: 0 !important;
}
.feedback-form {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0px 0px 16px 1px rgba(81, 92, 109, 0.1);
  background-image: url("assets/images/services/form-bg.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  position: relative;
}
.feedback-form .form-label {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  display: block;
}
.feedback-form .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}
.feedback-form .form-control:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}
.feedback-form .form-control::placeholder {
  color: #9ca3af;
}
.feedback-form textarea {
  resize: vertical;
  min-height: 120px;
}
.feedback-form .form-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .feedback-form .form-text {
    background-color: #ffffff;
    padding: 4px;
    border-radius: 5px;
    margin-top: 18px;
  }
}
.feedback-form .btn-primary {
  background: #fbbf24;
  border: none;
  color: #1f2937;
  font-weight: 600;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
}
.feedback-form .btn-primary:hover {
  background: #efaf0d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}
.feedback-form .btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.3);
}
.feedback-form input[type="file"]::-webkit-file-upload-button {
  background: #fbbf24;
  color: #1f2937;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 1rem;
  transition: all 0.3s ease;
}
.feedback-form input[type="file"]::-webkit-file-upload-button:hover {
  background: #efaf0d;
}
@media (max-width: 768px) {
  .feedback-form {
    padding: 1.5rem;
  }
  .feedback-form .btn-primary {
    width: 100%;
    padding: 1rem;
  }
}
.feedback-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  z-index: 9999;
  animation: slideIn 0.3s ease;
}
.feedback-notification.success {
  background: #10b981;
}
.feedback-notification.error {
  background: #ef4444;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.price-table {
  width: 100%;
  box-shadow: 0px 0px 16px 1px rgba(81, 92, 109, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
.price-table td,
.price-table th {
  text-align: center !important;
  padding: 16px !important;
  vertical-align: middle !important;
}
.price-table th {
  background-color: #fbbf24 !important;
  vertical-align: middle !important;
}
.price-table .row-2 th {
  background-color: #fff1cb !important;
  vertical-align: middle !important;
}
.tablepress-table-name {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold !important;
  color: #1f2937 !important;
  position: relative;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px !important;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .tablepress-table-name {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .tablepress-table-name {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .tablepress-table-name {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
  }
}
.tablepress-table-name::before {
  width: 30px;
  height: 10px;
  display: block;
  content: "";
  background-color: #fbbf24;
  position: static;
  left: -45px;
  top: 50%;
}
@media (max-width: 768px) {
  .tablepress-table-name::before {
    content: none !important;
  }
}
.tablepress-table-name::after {
  width: 30px;
  height: 10px;
  display: block;
  content: "";
  background-color: #fbbf24;
  position: static;
  right: -45px;
  top: 50%;
}
@media (max-width: 768px) {
  .tablepress-table-name::after {
    width: 50px !important;
    height: 8px;
    position: static;
    transform: none;
  }
}
@media (max-width: 991px) {
  .dt-layout-cell.dt-layout-full {
    overflow: auto;
  }
  .table_page_scroll {
    overflow: auto;
  }
  .detailed-description > div {
    overflow: auto;
  }
}
.search-container {
  flex: 1;
  max-width: 300px;
}
@media (max-width: 1200px) {
  .search-container {
    display: none;
  }
}
.search-box {
  position: relative;
}
.search button {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 23px;
}
.search-icon {
  color: #9ca3af;
}
.search-input {
  width: 100%;
  padding: 10px 12px 10px 24px;
  background: #f3f4f6;
  border: none;
  border-radius: 25px;
  outline: none;
  box-shadow: 0px 0px 16px 1px rgba(81, 92, 109, 0.1);
}
.search-page__title .section-title_left {
  margin-bottom: 40px;
}
.search-page__title .section-title__text {
  font-size: 32px;
}
.search-page__item {
  padding: 24px;
  box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.1);
  border-radius: 12px;
}
.search-page__item a {
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 16px;
  display: block;
  font-size: 18px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-page__item p {
  color: #1f2937;
  font-weight: 600;
  background-color: #fbbf24;
  padding: 0px 10px;
  border-radius: 6px;
  display: inline;
  font-size: 14px;
  margin-bottom: 0;
}
.error {
  text-align: center;
}
.error__title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1;
  color: #1f2937;
}
@media (max-width: 768px) {
  .error__title {
    font-size: 40px;
  }
}
@media (max-width: 440px) {
  .error__title {
    font-size: 32px;
  }
}
.error__title span {
  color: #efaf0d;
  font-size: 60px;
}
@media (max-width: 768px) {
  .error__title span {
    font-size: 48px;
  }
}
@media (max-width: 440px) {
  .error__title span {
    font-size: 40px;
  }
}
.error__subtitle {
  margin-bottom: 32px;
  font-size: 24px;
}
@media (max-width: 440px) {
  .error__subtitle {
    font-size: 20px;
  }
}
.messengers-widget {
  position: fixed;
  right: 20px;
  bottom: 25px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1200px) {
  .messengers-widget {
    right: 20px;
    bottom: 95px;
  }
}
@media (max-width: 768px) {
  .messengers-widget {
    right: auto;
    left: 100px;
    top: auto;
    bottom: 20px;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 12px;
  }
}
.messengers-widget__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .messengers-widget__list {
    flex-direction: row;
    gap: 12px;
  }
}
.messengers-widget__item {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0px 0px 16px 1px rgba(81, 92, 109, 0.1);
  transition: all 0.3s ease;
  position: relative;
  font-size: 24px;
}
@media (max-width: 768px) {
  .messengers-widget__item {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
.messengers-widget__item:hover {
  transform: scale(1.1);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #fff;
}
.messengers-widget__item:hover .messengers-widget__tooltip {
  opacity: 1;
  visibility: visible;
  right: 70px;
}
@media (max-width: 768px) {
  .messengers-widget__item:hover .messengers-widget__tooltip {
    display: none;
  }
}
.messengers-widget__item--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}
.messengers-widget__item--whatsapp:hover {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}
.messengers-widget__item--telegram {
  background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%);
}
.messengers-widget__item--telegram:hover {
  background: linear-gradient(135deg, #229ed9 0%, #0088cc 100%);
}
.messengers-widget__item--max {
  background: radial-gradient(circle at 110%, #732ce2 50%, #9e5cdc 66%, #3cc1fd 93%, #3655fb 40%);
  padding: 8px;
}
@media (max-width: 768px) {
  .messengers-widget__item--max {
    padding: 6px;
  }
}
.messengers-widget__item--max img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}
.messengers-widget__tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: #1f2937;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: 500;
}
@media (max-width: 768px) {
  .messengers-widget__tooltip {
    display: none;
  }
}
.messengers-widget__tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1f2937;
}
.catalog-page .section-title_left {
  margin-bottom: 1.5rem;
}
.catalog-page .section-title_left .section-title__text {
  font-size: 28px;
}
.category-card {
  box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.1);
  display: flex;
  cursor: pointer;
  padding: 12px;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  transition: 0.3s all ease-in;
}
.category-card__img {
  height: 72px;
  width: 72px;
  border-radius: 8px;
  overflow: hidden;
}
.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-card__title {
  font-weight: 700;
  color: #1f2937;
  flex: 1;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category-card:hover {
  background-color: #fbbf24;
}
.category-card:hover .category-card__title {
  color: #222;
}
.category-card:hover .category-card__img {
  filter: grayscale();
}
.card-product {
  box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.1);
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-radius: 10px;
  transition: 0.2s all ease-out;
  height: 100%;
}
.card-product__content {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-product:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.2);
}
.card-product__bages {
  position: absolute;
  top: 8px;
  left: 10px;
}
.card-product__img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 160px;
  margin-bottom: 16px;
}
.card-product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-product__img .sale {
  background-color: #fbbf24;
  color: #222;
}
.card-product__title {
  display: -webkit-box;
  max-width: 400px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  font-size: 18px;
  color: #1f2937;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s all ease;
}
.card-product__title:hover {
  color: #efaf0d;
}
.card-product__buy {
  background-color: #fbbf24;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  line-height: 1;
  padding: 8px 10px;
  font-weight: 400;
  transition: 0.2s all ease;
}
.card-product__buy:hover {
  background-color: #efaf0d;
}
.card-product__more {
  width: 100%;
  display: block;
  text-align: center;
  border: 1px solid #6b7280;
  border-radius: 6px;
  text-decoration: none;
  line-height: 1;
  padding: 8px 10px;
  font-weight: 400;
  transition: 0.2s all ease;
}
.card-product__more:hover {
  background-color: #f1f3f7;
  border: 1px solid #f1f3f7;
}
.card-product__buttons {
  display: flex;
  gap: 10px;
}
.card-product__options {
  font-size: 14px;
  color: #6b7280;
}
.card-product__option {
  display: flex;
  width: 100%;
  gap: 4px;
}
.card-product__option b {
  font-weight: 500;
}
.card-product__price {
  font-size: 22px;
  color: #1f2937;
}
.card-product__price-block {
  gap: 12px;
  justify-content: space-between;
}
.card-product__bage {
  background-color: #f1f3f7;
  color: #505661;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1;
}
.card-product__prices {
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-product__sale-price {
  color: #6b7280;
  font-weight: 500 !important;
  text-decoration: line-through;
}
.sidebar-block .accordion {
  box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.1);
  border: none;
  border-radius: 10px;
  overflow: hidden;
}
.sidebar-block .accordion > div:last-child .accordion-button {
  border-bottom: none;
}
.sidebar-block .accordion > div:last-child .list-group-item:last-child {
  border-bottom: none !important;
}
.sidebar-block .accordion-header {
  transition: 0.2s all ease;
}
.sidebar-block .accordion-header .badge {
  transition: 0.2s all ease;
}
.sidebar-block .accordion-header.active {
  background-color: #fbbf24;
}
.sidebar-block .accordion-header.active .badge {
  background-color: #1f2937;
  color: #fff;
}
.sidebar-block .accordion-header:hover {
  background-color: #fbbf24;
}
.sidebar-block .accordion-header:hover .badge {
  background-color: #1f2937;
  color: #fff;
}
.sidebar-block .accordion-button {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  transition: 0.2s all ease;
  width: auto;
  padding: 16px;
  background-color: transparent !important;
}
.sidebar-block .accordion-button:not(.collapsed) {
  background-color: transparent;
  border-bottom: none;
  box-shadow: none !important;
  padding: 16px;
}
.sidebar-block .accordion-button:not(.collapsed) .badge {
  background-color: #1f2937;
  color: #fff;
}
.sidebar-block .accordion-button:focus {
  box-shadow: none !important;
}
.sidebar-block .list-group-item {
  border: none !important;
  border-bottom: 1px solid #e3e3e3 !important;
  background-color: #f1f3f7;
  transition: 0.2s all ease;
}
.sidebar-block .list-group-item.active {
  background-color: #dfe4ed;
  color: #1f2937;
}
.sidebar-block .list-group-item:hover {
  background-color: #dfe4ed;
}
.sidebar-block .accordion-button__title-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1f2937;
}
.sidebar-block .accordion-button__title-content a {
  padding: 16px 24px;
  padding-right: 0;
}
.sidebar-block .accordion-button__title-content .badge {
  background-color: #fbbf24;
  color: #222;
}
.sidebar-block .accordion-button__title-content a {
  color: #1f2937;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.woocommerce-ordering {
  cursor: pointer;
}
.form-select {
  cursor: pointer;
}
.form-select:focus {
  border-color: #ffd875;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(253, 209, 13, 0.25);
  cursor: pointer;
}
.filters-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1040;
}
.filters-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.filters-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  height: 100vh;
  width: 420px;
  max-width: 100%;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1050;
  overflow: auto;
}
.filters-sidebar.is-open {
  right: 0;
}
.filters-sidebar .catalog__filters {
  padding: 24px;
}
.filters-sidebar .catalog__filters-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.filters-sidebar .catalog__filters-close {
  cursor: pointer;
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
  position: relative;
}
.filters-sidebar .catalog__filters-close:before,
.filters-sidebar .catalog__filters-close:after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 15px;
  height: 2px;
  background: #000;
}
.filters-sidebar .catalog__filters-close:before {
  transform: rotate(45deg);
}
.filters-sidebar .catalog__filters-close:after {
  transform: rotate(-45deg);
}
.product-info {
  padding: 24px 12px;
}
.product-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1;
  margin-bottom: 22px;
}
.product-price {
  margin-bottom: 20px;
  font-size: 30px;
  color: #1f2937;
  font-weight: 700;
}
.product-gallery {
  height: 400px;
  box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.product-gallery .sale {
  background-color: #fbbf24;
  color: #222;
}
.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product__price {
  font-size: 28px;
  color: #1f2937;
}
.product__price-block {
  gap: 14px;
}
.product__bage {
  background-color: #f1f3f7;
  color: #505661;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1;
}
.product__prices {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product__sale-price {
  color: #6b7280;
  font-weight: 500 !important;
  text-decoration: line-through;
  font-size: 20px;
}
.product__decp {
  color: #6b7280;
}
.product__options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #1f2937;
}
.product__option {
  background-color: #f1f3f7;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  width: calc(100% / 4 - 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1400px) {
  .product__option {
    width: calc(100% / 2 - 16px);
  }
}
@media (max-width: 991px) {
  .product__option {
    width: calc(100% / 4 - 16px);
  }
}
@media (max-width: 768px) {
  .product__option {
    width: calc(100% / 2 - 16px);
  }
}
@media (max-width: 440px) {
  .product__option {
    width: 100%;
  }
}
.product__option div {
  line-height: 1;
}
.product__option div:first-child {
  font-size: 14px;
  margin-bottom: 3px;
}
.product__option div:last-child {
  font-weight: 500;
  font-size: 16px;
}
.product__buy .quantity-control {
  max-width: 170px;
  gap: 8px;
}
.product-tabs .nav-tabs {
  margin-bottom: 24px;
  border: none;
  gap: 16px;
}
.product-tabs .nav-item button {
  border: none;
  padding: 12px 28px;
  line-height: 1;
  border-radius: 8px;
  font-weight: 400;
  background-color: #f1f3f7;
  color: #505661;
}
.product-tabs .nav-item button.active {
  background-color: #fbbf24;
  border: none;
  padding: 12px 28px;
  line-height: 1;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.1);
}
.product-tabs .tab-content {
  background-color: #fbfbfb;
  border-radius: 16px;
  padding: 16px 24px !important;
}
.similar-products .section-title_left {
  font-size: 30px;
}
.similar-products .owl-stage-outer,
.similar-products .owl-stage,
.similar-products .owl-item {
  height: 100%;
}
.similar-products .owl-item {
  padding-bottom: 24px;
  padding-top: 16px;
}
.similar-products .owl-nav {
  position: absolute;
  top: -27%;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 1400px) {
  .similar-products .owl-nav {
    top: -51%;
  }
}
@media (max-width: 1200px) {
  .similar-products .owl-nav {
    top: -61%;
  }
}
@media (max-width: 991px) {
  .similar-products .owl-nav {
    top: -81%;
  }
}
.similar-products .owl-prev,
.similar-products .owl-next {
  width: 48px;
  height: 48px;
  background-color: #fbbf24 !important;
  display: block;
  border-radius: 100%;
  box-shadow: 0px 0px 8px 1px rgba(81, 92, 109, 0.1);
}
.similar-products .owl-prev.disabled,
.similar-products .owl-next.disabled {
  opacity: 0.5;
}
.owl-similar-slider .owl-item > .col-12 {
  width: 100% !important;
}
.detailed-description h2,
.detailed-description.h2 {
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: 24px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.detailed-description h3,
.detailed-description.h3 {
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: 24px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.detailed-description h3::after,
.detailed-description.h3::after,
.detailed-description h2::after,
.detailed-description.h2::after {
  width: 28px;
  height: 8px;
  display: block;
  content: "";
  background-color: #fbbf24;
}
@media (max-width: 768px) {
  .detailed-description h3::after,
  .detailed-description.h3::after,
  .detailed-description h2::after,
  .detailed-description.h2::after {
    content: none;
  }
}
@media (max-width: 768px) {
  .detailed-description .section-title__text::after {
    content: "";
  }
}
.detailed-description .tablepress-table-name {
  display: flex;
}
.images-row-shortcode {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
  background-color: #f9fafb;
  padding: 20px;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .images-row-shortcode {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .images-row-shortcode {
    grid-template-columns: repeat(1, 1fr);
  }
}
.images-row-shortcode .images-row-item {
  border-radius: 10px;
  overflow: hidden;
}
.images-row-shortcode .images-row-item img {
  width: 100%;
  height: auto;
  display: block;
}
.woocommerce-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0px;
}
.woocommerce-product-gallery__trigger {
  display: none;
}
.custom-cart {
  display: flex;
  align-items: center;
}
@media (max-width: 400px) {
  .custom-cart {
    flex-direction: column;
  }
}
.custom-cart .quantity {
  display: flex;
}
@media (max-width: 400px) {
  .custom-cart .quantity {
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.custom-cart .single_add_to_cart_button {
  width: auto;
  padding: 10px 32px;
}
.quantity {
  margin-right: 16px;
  display: flex;
  width: max-content;
}
.product-quantity {
  display: flex !important;
  justify-content: space-between;
}
.product-quantity .quantity {
  margin-right: 0;
}
.input-text.qty.text {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 70px;
  text-align: center;
}
.plus.button.wp-element-button {
  margin-left: 6px;
  padding: 9px 14px 11px 14px;
  background-color: #ffffff;
  color: #1f2937;
  margin-right: 12px;
  cursor: pointer;
  font-weight: 300;
  font-size: 18px;
  box-shadow: none;
  border: 1px solid #d7d7d7;
  line-height: 1;
  border-radius: 6px;
}
.plus.button.wp-element-button:hover {
  background-color: #1f2937;
  color: #fff;
}
.minus.button.wp-element-button {
  margin-left: 6px;
  padding: 9px 16px 11px 16px;
  background-color: #ffffff;
  color: #1f2937;
  margin-right: 12px;
  cursor: pointer;
  font-weight: 300;
  font-size: 18px;
  box-shadow: none;
  border: 1px solid #d7d7d7;
  line-height: 1;
  border-radius: 6px;
}
.minus.button.wp-element-button:hover {
  background-color: #1f2937;
  color: #fff;
}
.woocommerce-product-gallery {
  height: 100%;
}
.woocommerce-product-gallery a,
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery .woocommerce-product-gallery__image {
  height: 100%;
}
.woocommerce-product-gallery .woocommerce-product-gallery__image a {
  display: block;
}
.woocommerce-Tabs-panel {
  background-color: #fbfbfb;
  border-radius: 16px;
  padding: 16px 24px !important;
  margin-top: 35px;
}
.woocommerce-Tabs-panel p:last-child {
  margin-bottom: 0;
}
.tabs.wc-tabs {
  margin-bottom: 24px;
  border: none;
  gap: 16px;
  list-style: none;
  padding: 0;
  display: flex;
}
.tabs.wc-tabs li a {
  border: none;
  padding: 12px 28px;
  line-height: 1;
  border-radius: 8px;
  font-weight: 400;
  background-color: #f1f3f7;
  color: #505661;
  text-decoration: none;
}
.tabs.wc-tabs li.active a {
  background-color: #fbbf24;
  color: #1f2937;
  border: none;
  padding: 12px 28px;
  line-height: 1;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.1);
}
.woocommerce-product-attributes-item__label {
  padding-right: 32px;
  padding-bottom: 5px;
}
.woocommerce-product-attributes-item__value {
  padding-bottom: 5px;
}
.related.products .col-6.col-md-4.mb-4 {
  width: 100% !important;
}
.woocommerce-pagination .page-numbers {
  gap: 10px;
  justify-content: center;
  display: flex;
  padding: 1rem 0;
  align-items: center;
  list-style: none;
  margin-bottom: 0px;
}
.woocommerce-pagination .page-numbers li .page-numbers {
  background-color: #f1f3f7;
  padding: 11px 16px;
  color: #505661;
  border-radius: 7px;
  line-height: 1;
}
.woocommerce-pagination .page-numbers li .page-numbers.current {
  background-color: #fbbf24 !important;
  font-weight: 600;
  color: #1f2937;
  box-shadow: 0px 0px 8px 1px rgba(81, 92, 109, 0.1);
}
.wpc-filter-chip a {
  background-color: #f1f3f7;
  color: #505661 !important;
  padding: 6px 10px !important;
  border-radius: 10px !important;
  font-size: 14px;
  line-height: 1;
  border: none !important;
}
.wpc-filter-chip.wpc-chip-reset-all a {
  background-color: #1f2937 !important;
  color: #fff !important;
}
.woocommerce-info {
  border-top-color: #fbbf24;
  border-radius: 10px;
}
.woocommerce-info::before {
  color: #fbbf24;
}
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
}
.woocommerce table.shop_table th {
  font-size: 16px;
}
.woocommerce table.shop_table th {
  padding: 18px 12px;
}
.woocommerce table.shop_table td {
  padding: 18px 12px;
}
.cart_totals .shop_table.shop_table_responsive th {
  padding: 18px 24px;
}
.product-thumbnail a {
  width: 96px;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.woocommerce table.cart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
button[name="woocommerce_checkout_place_order"],
.checkout-button {
  background: #fbbf24 !important;
  color: #222 !important;
  padding: 18px 24px !important;
  border-radius: 25px !important;
  width: 100%;
  text-align: center;
  box-shadow: 0px 0px 8px 1px rgba(81, 92, 109, 0.1) !important;
}
.woocommerce table.shop_table td.product-price {
  font-size: 16px;
}
.woocommerce table.shop_table {
  box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.1);
  border: none;
  border-radius: 12px !important;
}
.cart-collaterals {
  position: sticky;
  top: 32px;
}
.quantity .minus.button.wp-element-button {
  margin-right: 6px;
  margin-left: 0;
}
.quantity .plus.button.wp-element-button {
  margin-left: 5px;
  margin-right: 0;
}
.woocommerce table.cart td.product-quantity .qty {
  padding: 8.5px 0px !important;
  line-height: 1;
}
.product-name a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
button[name="update_cart"] {
  background-color: #f1f3f7 !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
}
.woocommerce-message {
  border-top-color: #fbbf24;
  border-radius: 10px;
}
.woocommerce-message::before {
  color: #fbbf24;
}
.woocommerce a.remove {
  color: #222 !important;
  font-size: 16px;
  height: 29px;
  width: 29px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce a.remove:hover {
  color: #222 !important;
  background: #fbbf24;
}
.product-subtotal .woocommerce-Price-amount.amount {
  background-color: #fbbf24 !important;
  font-weight: bold;
  padding: 5px 10px;
  line-height: 1;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .product-subtotal .woocommerce-Price-amount.amount {
    background-color: transparent !important;
    padding: 0;
  }
}
.woocommerce-additional-fields {
  margin-top: 24px;
}
.woocommerce-additional-fields h3 {
  font-weight: 600;
}
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
  padding: 16px 20px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s;
}
.customer_details {
  position: sticky;
  top: 24px;
}
.woocommerce form .form-row {
  width: 100%;
  margin-bottom: 16px;
}
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3 {
  font-weight: 700;
  margin-bottom: 20px;
}
.woocommerce-checkout-payment {
  background: transparent !important;
}
.form-row.place-order {
  padding: 0 !important;
}
.checkout.woocommerce-checkout .section-title_left,
.woocommerce-order .section-title_left {
  margin-bottom: 1em;
}
.checkout.woocommerce-checkout .section-title__text,
.woocommerce-order .section-title__text {
  font-size: 28px;
}
.woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 16px;
}
.woocommerce ul.order_details {
  padding-left: 0;
}
.woocommerce ul.order_details li {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  margin-bottom: 16px;
}
.woocommerce ul.order_details li strong {
  color: #222;
}
.thankyou_order {
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.thankyou_order i {
  color: #fbbf24;
  font-size: 32px;
}
.thankyou_order h2 {
  font-weight: 700;
}
.catalog__filters-title {
  font-size: 24px;
  font-weight: bold;
  color: #1f2937;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}
.catalog__filters-title::after {
  width: 30px;
  height: 10px;
  display: block;
  content: "";
  background-color: #fbbf24;
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
}
.widget-title.wpc-filter-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 6px;
  color: #1f2937;
}
.wpc-filters-range-wrapper input[type="number"] {
  padding: 10px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.wpc-filter-layout-submit-button {
  margin-top: 50px;
}
.wpc-filter-layout-submit-button {
  gap: 14px;
}
.wpc-filter-layout-submit-button a {
  width: calc(100% / 2) !important;
}
.wpc-filters-submit-button {
  background-color: #fbbf24 !important;
  border: none !important;
  color: #1f2937 !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
}
.wpc-filters-reset-button {
  background-color: #f1f3f7 !important;
  color: #505661 !important;
  border: none !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
}
.ui-slider-range.ui-corner-all.ui-widget-header {
  background-color: #fbbf24 !important;
}
.ui-slider-handle.ui-corner-all.ui-state-default {
  border: none !important;
  background: #f1f3f7 !important;
}
@media (max-width: 991px) {
  .js-filters-open {
    position: fixed;
    bottom: 25px;
    left: 20px;
    z-index: 999;
  }
}
.wpc-filters-main-wrap li.wpc-term-item input[type="checkbox"],
.wpc-filters-main-wrap li.wpc-term-item input[type="radio"] {
  width: auto;
}
.hidden {
  display: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}
img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
a {
  color: #1f2937;
}
.h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  margin-top: 32px;
}
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title__text {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  position: relative;
  display: inline-block !important;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .section-title__text {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
  }
}
.section-title__text::before {
  width: 30px;
  height: 10px;
  display: block;
  content: "";
  background-color: #fbbf24;
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .section-title__text::before {
    content: none !important;
  }
}
.section-title__text::after {
  width: 30px;
  height: 10px;
  display: block;
  content: "";
  background-color: #fbbf24;
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .section-title__text::after {
    width: 50px;
    height: 8px;
    position: static;
    transform: none;
  }
}
@media (max-width: 768px) {
  .section-title__text {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .section-title__text {
    font-size: 1.5rem;
  }
}
.section-title p {
  color: #6b7280;
  margin-bottom: 0;
  font-size: 18px;
}
.section-title_left {
  margin-bottom: 3rem;
  text-align: left;
}
.section-title_left .section-title__text::before {
  content: none;
}
.section-space {
  padding: 7rem 0;
}
@media (max-width: 768px) {
  .section-space {
    padding: 5rem 0;
  }
}
.section-space-xs {
  padding: 3rem 0;
}
.bg-gray {
  background-color: #f9fafb;
}
.img {
  border-radius: 10px;
  box-shadow: 0px 0px 20px 1px rgba(81, 92, 109, 0.1);
  overflow: hidden;
  object-fit: cover;
}
