@charset "UTF-8";
.banner {
  color: #fff;
  min-height: 500px;
  text-align: center;
  position: relative;
}
.banner .img_banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.banner .banner-content {
  position: absolute;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}
.banner .banner-content h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.banner .banner-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.5;
}

.main {
  padding: 40px 0;
}
.main .content-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .main .content-wrapper {
    grid-template-columns: 1fr;
  }
}

.sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  height: -moz-fit-content;
  height: fit-content;
}
.sidebar .title-sidebar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d0e1eb;
}
.sidebar .title-sidebar img {
  width: 20px;
  height: 20px;
}
.sidebar .title-sidebar p {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.sidebar .sidebar-section {
  margin-bottom: 0px;
}
.sidebar .sidebar-section:last-child {
  margin-bottom: 0;
}
.sidebar .sidebar-section h3 {
  color: #333;
  font-size: 16px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d0e1eb;
}
.sidebar .sidebar-section .section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 8px 0;
  transition: all 0.3s ease;
  font-weight: 600;
}
.sidebar .sidebar-section .section-title:hover {
  color: #1976d2;
}
.sidebar .sidebar-section .section-title .collapse-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: #666;
}
.sidebar .sidebar-section .section-title.collapsed .collapse-icon {
  transform: rotate(180deg);
}
.sidebar .sidebar-section .section-content {
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  max-height: 1000px;
}
.sidebar .sidebar-section .section-content.collapsed {
  max-height: 0;
  margin-bottom: 0;
}
.sidebar .sidebar-section .category-list,
.sidebar .sidebar-section .filter-list {
  list-style: none;
  padding-left: 0;
}
.sidebar .sidebar-section .category-list li,
.sidebar .sidebar-section .filter-list li {
  margin-bottom: 8px;
}
.sidebar .sidebar-section .category-list li a,
.sidebar .sidebar-section .filter-list li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: color 0.3s ease;
}
.sidebar .sidebar-section .category-list li a:hover,
.sidebar .sidebar-section .filter-list li a:hover {
  color: #1976d2;
}
.sidebar .sidebar-section .category-list li label,
.sidebar .sidebar-section .filter-list li label {
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  font-weight: 300;
}
.sidebar .sidebar-section .category-list li label input[type=checkbox],
.sidebar .sidebar-section .filter-list li label input[type=checkbox] {
  margin-right: 8px;
  accent-color: #1976d2;
}

.products-section .products-header {
  background: #fff;
  padding: 20px 0;
  border-radius: 8px;
  margin-bottom: 20px;
}
.products-section .products-header .filter-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgb(46, 162, 254);
}
.products-section .products-header .filter-controls .title-prd-cat {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.products-section .products-header .filter-controls .sort-select {
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
}
.products-section .products-header .filter-controls .view-toggle {
  display: flex;
  gap: 5px;
}
.products-section .products-header .filter-controls .view-toggle .view-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #fff;
  color: #333;
  font-size: 14px;
  padding: 8px 15px;
}
.products-section .products-header .filter-controls .view-toggle .view-btn.active {
  background: #1976d2;
  color: #fff;
}
.products-section .products-header .filter-controls .view-toggle .view-btn span {
  font-size: 16px;
}
.products-section .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.products-section .products-grid .product-item {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.products-section .products-grid .product-item .group-tags-wrapper {
  display: flex;
  gap: 5px;
  position: absolute;
  top: 12px;
  right: 12px;
}
.products-section .products-grid .product-item .group-tags-wrapper .prd-tag {
  z-index: 3;
}
.products-section .products-grid .product-item .group-tags-wrapper .prd-tag span {
  padding: 4px 12px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
}
.products-section .products-grid .product-item .group-tags-wrapper .prd-tag .trending {
  background: #d1eafc;
  color: #1877f2;
}
.products-section .products-grid .product-item .group-tags-wrapper .prd-tag .best_selling {
  background: #1898f1;
  color: #fff;
}
.products-section .products-grid .product-item .group-tags-wrapper .prd-tag .new {
  background: #f1ac00;
  color: #fff;
}
.products-section .products-grid .product-item:hover {
  box-shadow: 0 4px 20px rgb(240, 240, 240);
}
.products-section .products-grid .product-item:hover .product-image {
  background-color: #ecf6fc;
}
.products-section .products-grid .product-item .product-image {
  border-radius: 8px;
  border: 1px solid rgb(241, 241, 241);
  padding: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 268px;
}
.products-section .products-grid .product-item .product-image img {
  width: 100%;
  height: auto;
  padding: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-section .products-grid .product-item .product-info {
  padding: 20px;
}
.products-section .products-grid .product-item .product-info .product-title {
  font-size: 23px;
  font-weight: 600;
  color: #1877f1;
  margin-bottom: 15px;
}
.products-section .products-grid .product-item .product-info .product-features {
  list-style: none;
  padding-left: 0;
}
.products-section .products-grid .product-item .product-info .product-features > ul {
  padding-left: 0;
  list-style: none;
}
.products-section .products-grid .product-item .product-info .product-features li {
  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
  color: #000;
}
.products-section .products-grid .product-item .product-info .product-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1877f1;
  font-weight: bold;
}
.products-section .products-grid .product-item .product-info .product-features li:last-child {
  margin-bottom: 0;
}
.products-section .products-grid .product-category {
  grid-column: 1/-1;
}
.products-section .products-grid .product-category h2 {
  width: 65%;
  color: #000;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  display: inline-block;
}
.products-section .products-grid .product-category .category-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.product-content {
  position: relative;
  color: #fff;
  margin-top: 40px;
  border-radius: 8px;
  padding: 132px 0;
  margin-bottom: 70px;
}
.product-content #img-software-demo-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.product-content .container {
  position: relative;
  display: flex;
  gap: 86px;
}
.product-content .product-info {
  position: relative;
  z-index: 2;
  max-width: 460px;
}
.product-content .product-info .product-title {
  font-size: 34px;
  line-height: 42px;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.51);
  font-weight: 700;
  margin-bottom: 36px;
  color: #fff;
}
.product-content .product-info .product-title .highlight {
  color: #fff;
  display: inline-block;
}
.product-content .product-info .product-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 38px;
}
.product-content .product-info .btn-primary {
  display: block;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #60c4f3;
  color: #fff;
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  text-decoration: none;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}
.product-content .product-info .btn-primary:hover {
  transform: translateY(-2px);
  background: rgb(255, 255, 255);
  color: #0d47a1;
}
.product-content .product-devices {
  width: 50%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
.product-content .product-devices .devices-mockup img {
  width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .product-content {
    padding: 60px 0;
  }
  .product-content .product-devices {
    right: 4%;
    width: 44%;
  }
  .product-content .product-info {
    max-width: 420px;
    padding-left: 18px;
  }
  .product-content::before {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .product-content {
    padding: 40px 20px;
  }
  .product-content .product-devices {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }
  .product-content .devices-mockup {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: flex-end;
  }
  .product-content .device {
    position: static;
    transform: none !important;
  }
  .product-content .product-info {
    text-align: center;
    margin: 0 auto;
  }
  .product-content::before {
    display: none;
  }
  .banner .container .banner-content {
    padding: 20px;
    left: 0;
    margin: 0;
  }
  .banner .container .banner-content h1 {
    font-size: 26px;
  }
  .banner .container .banner-content p {
    font-size: 14px;
  }
  .main .container .content-wrapper .products-section .products-header .filter-controls {
    flex-direction: column;
  }
  .main .container .content-wrapper .products-section .products-header .filter-controls .title-prd-cat {
    width: 100%;
  }
  .main .container .content-wrapper .products-section .products-header .filter-controls .view-toggle {
    justify-content: space-between;
    width: 100%;
  }
  .main .container .content-wrapper .products-section .products-grid {
    grid-template-columns: 1fr !important;
  }
  .product-content .container {
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .product-content .container .product-info {
    padding: 30px 0;
  }
  .product-content .container .product-info .product-title {
    font-size: 24px;
    line-height: 32px;
  }
  .product-content .container .product-info .btn-primary {
    margin: auto;
  }
  .product-content .container .product-devices .devices-mockup .device {
    width: 70%;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .products-grid .product-item .product-info {
    padding: 15px;
  }
  .products-grid .product-item .product-info .product-title {
    font-size: 16px;
  }
  .products-grid .product-item .product-info .product-features li {
    font-size: 13px;
  }
}
