.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;
  padding: 2.5rem 2.5rem;
  display: inline-block;
}
.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);
}
.subscription-cart {
  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 1rem 5.25rem;
}
.subscription-cart .option:not(:last-child):after {
  content: ", ";
  margin-right: 0.2rem;
}
.subscription-cart .items {
  padding: 0.8rem 0;
}
.subscription-cart .items:not(:last-child) {
  border-bottom: var(--bs-border-width) solid var(--bs-border-color);
}
.floating-buttons {
  display: none;
}
/* PC View */
@media only screen and (min-width: 769px) {
  .sticky-filter {
    height: 100%;
    min-height: 200px;
    overflow: auto;
    position: sticky;
    top: 4.8rem;
  }
  .sticky-filter h3 {
    border-color: #cc9966;
    border-width: 3px;
    border-style: solid;
    border-left: none;
    border-right: none;
    margin: 0;
    padding: 0.8rem 0px 0.5rem;
  }
}
/* Mobile View */
@media (max-width: 768px) {
  .floating-buttons {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
  }
  .floating-buttons .filter-btn {
    font-size: 2.5rem;
  }
  .sticky-filter {
    position: fixed;
    top: 20%;
    background: #fff;
    border: 5px solid #c96;
    border-right: unset;
    border-radius: 1.25rem 0rem 0rem 1.25rem;
    display: block;
    height: 70%;
    width: 90%;
    overflow-y: scroll;
    padding: 10px 0px;
    left: 105%;
    box-shadow: 2px 1px 8px 0px #c96;
    transition: all 0.35s ease-in-out;
    z-index: 99;
  }
  .sticky-filter h3 {
    padding: 1rem;
    border-bottom: 0.3rem solid #c49b6d;
  }
  .filter-container {
    overflow-y: scroll;
    padding: 1.25rem 2rem 1.25rem;
  }
  .subscription-cart {
    box-shadow: none;
  }
}
