/* CSS Document */
@charset "utf-8";
@import "style.css";
@import "jetmenu.css";
@import "bootstrap.css";
@import "flexslider.css";
@import "swipebox.css";
@import "font-awesome.css";
@import "animate.css";
@import "responsive.css";

/* Uniform slider banner sizing — all slides crop to the same box regardless
   of each image's original dimensions. */
.flexslider .slides li {
  height: 560px;
  overflow: hidden;
}
.flexslider .slides li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 991px) {
  .flexslider .slides li {
    height: 420px;
  }
}
@media (max-width: 767px) {
  .flexslider .slides li {
    height: 320px;
  }
}
@media (max-width: 480px) {
  .flexslider .slides li {
    height: 240px;
  }
}

/* Product category filter sidebar (category-filter.php) */
.cf-widget {
  border: 1px solid #e3e8ee;
  border-radius: 4px;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}
.cf-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: none;
  border-bottom: 1px solid #e3e8ee;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  color: #1a2744;
  cursor: pointer;
  text-align: left;
}
.cf-caret {
  font-size: 10px;
  color: #4BB3C6;
}
.cf-body {
  padding: 14px 16px 18px;
}
.cf-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 10px;
}
.cf-list,
.cf-sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cf-item {
  margin-bottom: 4px;
}
.cf-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cf-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 5px 0;
  font-size: 13.5px;
  color: #444;
  text-decoration: none;
  transition: color 0.15s;
}
.cf-label:hover {
  color: #4BB3C6;
  text-decoration: none;
}
.cf-label.cf-active {
  color: #1a2744;
  font-weight: 700;
}
.cf-box {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #b7c0cc;
  border-radius: 2px;
  background: #fff;
  position: relative;
}
.cf-box.cf-checked {
  background: #4BB3C6;
  border-color: #4BB3C6;
}
.cf-box.cf-checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cf-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  color: #4BB3C6;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}
.cf-sub {
  margin: 2px 0 8px 23px;
  border-left: 1px solid #eaeff5;
  padding-left: 12px;
}
.cf-sub .cf-label {
  font-size: 12.5px;
  color: #666;
}
.cf-sub .cf-box {
  width: 13px;
  height: 13px;
}
.cf-group-label {
  cursor: default;
  font-weight: 600;
  color: #1a2744;
}