.deals-page {
  padding: 22px 0 45px;
}

.deals-breadcrumb {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 28px;
}

.deals-breadcrumb ol li a{
  font-weight: 600;
  text-decoration: none;
  color: #c2c2c2;
  font-size: 14px;
  transition: .3s ease-in-out;
}

.deals-breadcrumb a:hover{
    color: var(--blue);
}

.deals-breadcrumb .breadcrumb-item.active {
    color: #c2c2c2 !important;
    font-size: 14px;
}

.deals-breadcrumb .breadcrumb-item+.breadcrumb-item::before{
    color: #c2c2c2;
}

.deals-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}

.filter-card {
  background: #f3f7fc;
  padding: 0 30px 30px;
  
  border-radius: 15px;
    box-shadow: 0px 2px 15px 0px rgba(114, 114, 255, 0.2);
    transition: .3s ease-in-out;
}

.filter-title {
  font-size: 23px;
  color: #334155;
  font-weight: 600;
  padding: 6px 0 25px;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-head {
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
  color: #585858;
  font-size: 13px;
}

.filter-item input {
  border-radius: .25em;
}

.filter-item .dealCat a
{
    color: #585858;
    text-decoration:none;
}

.filter-item .dealCat a:hover
{
    text-decoration:none;
    color:var(--blue);
}

.deals-main h1 {
  color: var(--blue3);
  font-size: 34px;
  margin-bottom: 0;
  font-weight: 600;
}

.deals-main p{
    font-size: 15px;
    line-height: 1.4;
    color: #585858;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: .5rem;
}

.deals-desc {
  display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    line-height: 1.6;
}

.product-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.product-count {
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
}

.sort-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.sort-box span{
  font-size:14px;
  font-weight:600;
  color: var(--blue);
  width:80px;
}

.sort-box select {
  background-color: white;
    border-radius: 5px;
    border: 1px solid #d2d2d2;
    padding: 5px;
    max-width: 100%;
    width: 100%;
    transition: all 0.3s ease;
    color:#6B6860;
}

.sort-box select:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,.12);
  text-decoration: none;
  color: inherit;
}

.product-img {
  width: 100%;
  height: 205px;
  background: #ddd;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
}

.product-body {
  padding: 14px 18px 24px;
}

.product-title {
  min-height: 48px;
  font-size: 14px;
  font-weight:500;
  line-height: 1.28;
  color: #3f3f46;
}

.product-title:hover{
  color:var(--blue);
}

.product-price {
  font-size: 22px;
  font-weight: 700;
  color: #3f3f46;
}

.product-price del {
  color: #a7adb7;
  margin-right: 7px;
}

.show-more {
  text-align: center;
  margin-top: 38px;
}

.show-more a {
  text-decoration: none;
  background-color: var(--blue);
  color: white;
  border-radius: 5px;
  padding: 8px 20px;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  transition: 0.3s;
}

.show-more a:hover {
  text-decoration: none;
  background-color: #000;
  color: white;
}

.filter-card {
position: sticky;
top: 90px;
align-self: flex-start;
}

.filter-head {
cursor: pointer;
user-select: none;
}

.filter-body {
display: block;
}

.filter-group.closed .filter-body {
display: none;
}

.filter-toggle {
font-size: 20px;
line-height: 1;
}

.filter-group.closed .filter-body{
    display:none;
}

@media(max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 900px) {
  .deals-layout {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}