.filter-container {
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0.125rem 0.125rem 1.25rem -0.1875rem rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  padding: 1rem;
}

.products-container .top-banner {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}

.products-container .top-banner .banner-content {
  position: relative;
  width: 100%;
  padding: 2.5rem 2.5rem;
  display: inline-block;
}

@media (max-width: 992px) {
  .products-container .top-banner .banner-content {
    padding-top: 10rem;
  }
}

.products-container .top-banner .banner-content h1 {
  text-shadow: 0rem 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.1rem;
}

.products-container .top-banner .banner-content a {
  color: #fff;
  padding: 0.4375rem 0.625rem;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  letter-spacing: -0.0313rem;
  border-radius: 1.875rem;
  background: #9e0b0f;
}

.products-container .top-banner .banner-content a:hover {
  background: rgba(158, 11, 15, 0.6901960784);
}

.accordion:not(:last-child) {
  border-bottom: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-item {
  border: none;
  cursor: pointer;
}

.accordion-item .accordion-header {
  text-transform: uppercase;
}

.accordion-item .accordion-header .main-text {
  font-weight: 700;
}

.accordion-button {
  padding: 0.5rem 0px;
  pointer-events: none;
}

.accordion-button:not(.collapsed) {
  background-color: unset;
  box-shadow: unset;
  color: #000;
}

.accordion-button::after {
  pointer-events: all;
}

.list-group-item {
  border: none;
  pointer-events: auto;
}

.list-group-item.active {
  background-color: transparent;
  border-color: unset;
  color: #c96;
}

.floating-buttons {
  display: none;
}

/* Blog Articles */

.article-container {
  margin-top: 6.25rem;
}

.article-container .container-describe {
  padding-bottom: 5rem;
  margin-bottom: 1.875rem;
}

.article-container .container-describe-line {
  border-top: 0.0625rem solid #c96;
  padding: 3.125rem 0;
}

.article-container .container-describe-img {
  margin-right: 3.125rem;
}

.article-container .container-describe-title {
  color: #333;
  font-family: "EagleLight";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.25rem;
  letter-spacing: -0.0225rem;
  height: 5.5rem;
}

.article-container .container-describe-detail {
  color: var(--666, #666);
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem; /* 150% */
  letter-spacing: 0.0375rem;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.article-container .container-describe-button {
  border-radius: 1.875rem;
  background: var(--Yellow, #c96);
  display: flex;
  padding: 0.5625rem 1.1653rem 0.625rem 1rem;
  justify-content: center;
  align-items: center;
  border: none;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3125rem; /* 131.25% */
}

/* PC View */

@media only screen and (min-width: 992px) {
  .sticky-filter {
    height: 100%;
    min-height: 200px;
    overflow: auto;
    position: sticky;
    top: 7rem;
  }
}

/* Mobile/Tablet View */

@media (max-width: 991px) {
  .floating-buttons {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  .floating-buttons .filter-btn {
    font-size: 2.5rem;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
    cursor: pointer;
    padding: 0.5rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .floating-buttons .filter-btn:hover {
    transform: scale(1.05);
    background-color: #f8f8f8;
  }
  .floating-buttons .filter-btn i {
    color: #c96;
    font-size: 1.5rem;
    margin-right: 0.5rem;
  }
  .floating-buttons .filter-btn .filter-text {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
  }
  .sticky-filter {
    position: fixed;
    top: 0;
    background: #fff;
    border-left: 4px solid #c96;
    border-radius: 0;
    display: flex;
    height: 100%;
    width: 85%;
    max-width: 350px;
    overflow: hidden;
    right: -100%;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
    transition: all 0.35s ease-in-out;
    z-index: 1050;
  }
  .sticky-filter.active {
    right: 0;
  }
  .filter-container {
    overflow-y: auto;
    padding: 1.25rem;
    width: 100%;
  }
  .filter-container .accordion-button {
    padding: 0.75rem 0;
  }
  .filter-container .list-group-item {
    padding: 0.5rem 0.75rem;
  }
  body.filter-open {
    overflow: hidden;
  }
  .filter-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
  }
  .filter-backdrop.active {
    display: block;
  }
}
