.product-banner-area {
    margin-top: 24px;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(90deg, black 0%, #B23303 100%);
    padding: 40px;
    border-radius: 10px;
}

.text-area-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-area-wrap h5 {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
}

.text-area-wrap h3 {
    font-size: 40px;
    color: #FFFFFF;
    font-weight: 700;
    width: 300px;
}

.text-area-wrap h6 {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 400;
    width: 300px;
}

.button-wrap .button-style2 {
    color: black;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 12px;
}

.image-area-wrap img {
    width: 90%;
}

.productlistmainwrapper {
    margin-top: 40px;
}

.left-cat {
    padding: 16px 0px;
}

.left-cat ul {
    padding-left: 0px !important;
}

.left-cat ul li {
    list-style: none;
}

.left-cat ul li a {
    text-decoration: none;
    font-size: 13px;
    color: black;
    font-weight: 500;
    letter-spacing: 0.25px;
}

.left-cat ul li a:hover {
    color: #9747FF;
}


.container-wrapper {
    display: flex;
    /* gap: 100px; */
}

.left-filter-area {
    width: 250px;
}
.right-product-listing{
  width: 100%;
}

.head-right a {
    text-decoration: none;
    font-size: 18px;
    color: black;
    font-weight: 600;
}

.head-right {
    padding: 16px 0px;
}

.sort-dropdown {

    padding: 10px 20px;


}

.sort-dropdown label {
    margin-right: 10px;
    font-weight: bold;
}

.sort-dropdown select {
    padding: 5px;
    font-size: 16px;
    outline: none;
    border: none;
}


.sort-dropdown select:focus {
    border: 1px black;
}


.single-product-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1 1 calc(25% - 20px);
    /* For desktop: 4 items per row */
    box-sizing: border-box;
    max-width: calc(25% - 20px);
    padding: 10px;
    /* Optional: Add padding if needed */
    margin-bottom: 20px;
    /* Adjust as needed for spacing */
    position: relative;
}


.rimg {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-wrap-r {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.product-details,
.cart {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-details {
    flex: 1;
}

.cart {
    flex-shrink: 0;
    margin-left: 20px;
}



.real-price,
.old-price {
    margin: 5px 0;


}

.right-product-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-details h6 {
    font-size: 13px;
    font-weight: 500;
}

.real-price h5 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.25px;
}

.old-price h5 {
    font-size: 13px;
    font-weight: 500;
    color: #807D7E;
    letter-spacing: 0.25px;
    text-decoration: line-through;
}

.price-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
}

.rimg {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 242px;
    box-sizing: border-box;
    gap: 16px;

}

.rimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-product-wrapper .wishlist {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.single-product{
    width: calc((100% / 4) - (45px / 4));
}

.top-cat-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-button {
    display: flex;
    gap: 8px;
    padding: 8px 16px;
    background-color: white;
    border-radius: 8px;
    display: none;
}

.filter-button:hover {

    background-color: rgb(231, 231, 231);
    color: rgb(0, 0, 0);

}


.filter-area {
    position: relative;
    margin: 20px;
}

.filter-button {
    padding: 10px 20px;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.filter-button img {
    margin-right: 10px;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -400px;
    /* Adjust this value based on your off-canvas width */
    width: 400px;
    /* Adjust the width as needed */
    height: 100%;
    background-color: #f8f9fa;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease-in-out;
    padding: 20px;
}

.offcanvas-menu.active {
    right: 0;
}

.close-button {
    padding: 10px 20px;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.filter-area,
.offcanvas-menu {
    display: none;
}

.chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    padding: 10px 20px;
    border-radius: 2px;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.chip.selected {
    background-color: black;
    color: white;
}

.chip:hover {
    background-color: black;
    color: white;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    padding-bottom: 16px;
}

.custom-checkbox input[type="checkbox"] {
    appearance: none;
    width: 20px;
    /* Set the width of the checkbox */
    height: 20px;
    /* Set the height of the checkbox */
    border: 1px solid #000;
   border-radius: 24px ;
    /* Border color */
    margin-right: 16px;
    /* Gap between checkbox and label */
}

.custom-checkbox input[type="checkbox"]:checked {
    background-color: #000;
    
    /* Filled background color */
}

.back-and-clear {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;

}

.back-and-clear a {
    color: #000;
    font-size: 14px;
    font-weight: 600;


}
.clear-area{
    display: flex;
    align-items: center;
    gap: 24px;
}

.back-and-clear p {
    margin-bottom: 0px !important;
}
.filter-btn{
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  background-color: #FFFFFF;
  border: 1px solid #000000;
  padding: 12px 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 24px;
}


.offcanvas-menu {
    height: 100%; /* Adjust height as needed */
    overflow-y: auto;
}

.head-area-clear h3{
    text-transform: uppercase;
}

/* heart filled */

.ui-bookmark {
    --icon-size: 24px;
    --icon-secondary-color: rgb(223, 223, 223);
    --icon-hover-color: rgb(179, 179, 179);
    --icon-primary-color: rgb(252, 54, 54);
    --icon-circle-border: 1px solid var(--icon-primary-color);
    --icon-circle-size: 35px;
    --icon-anmt-duration: 0.3s;
  }
  
  .ui-bookmark input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
  }
  
  .ui-bookmark .bookmark {
    width: var(--icon-size);
    height: auto;
    fill: var(--icon-secondary-color);
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
  }
  
  .bookmark::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    -webkit-box-shadow: 0 30px 0 -4px var(--icon-primary-color),
      30px 0 0 -4px var(--icon-primary-color),
      0 -30px 0 -4px var(--icon-primary-color),
      -30px 0 0 -4px var(--icon-primary-color),
      -22px 22px 0 -4px var(--icon-primary-color),
      -22px -22px 0 -4px var(--icon-primary-color),
      22px -22px 0 -4px var(--icon-primary-color),
      22px 22px 0 -4px var(--icon-primary-color);
    box-shadow: 0 30px 0 -4px var(--icon-primary-color),
      30px 0 0 -4px var(--icon-primary-color),
      0 -30px 0 -4px var(--icon-primary-color),
      -30px 0 0 -4px var(--icon-primary-color),
      -22px 22px 0 -4px var(--icon-primary-color),
      -22px -22px 0 -4px var(--icon-primary-color),
      22px -22px 0 -4px var(--icon-primary-color),
      22px 22px 0 -4px var(--icon-primary-color);
    border-radius: 50%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    padding: 1px;
  }
  
  .bookmark::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: var(--icon-circle-border);
    opacity: 0;
  }
  
  /* actions */
  
  .ui-bookmark:hover .bookmark {
    fill: var(--icon-hover-color);
  }
  
  .ui-bookmark input:checked + .bookmark::after {
    -webkit-animation: circles var(--icon-anmt-duration)
      cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation: circles var(--icon-anmt-duration)
      cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    -webkit-animation-delay: var(--icon-anmt-duration);
    animation-delay: var(--icon-anmt-duration);
  }
  
  .ui-bookmark input:checked + .bookmark {
    fill: var(--icon-primary-color);
    -webkit-animation: bookmark var(--icon-anmt-duration) forwards;
    animation: bookmark var(--icon-anmt-duration) forwards;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  
  .ui-bookmark input:checked + .bookmark::before {
    -webkit-animation: circle var(--icon-anmt-duration)
      cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation: circle var(--icon-anmt-duration)
      cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    -webkit-animation-delay: var(--icon-anmt-duration);
    animation-delay: var(--icon-anmt-duration);
  }
  
  @-webkit-keyframes bookmark {
    50% {
      -webkit-transform: scaleY(0.6);
      transform: scaleY(0.6);
    }
  
    100% {
      -webkit-transform: scaleY(1);
      transform: scaleY(1);
    }
  }
  
  @keyframes bookmark {
    50% {
      -webkit-transform: scaleY(0.6);
      transform: scaleY(0.6);
    }
  
    100% {
      -webkit-transform: scaleY(1);
      transform: scaleY(1);
    }
  }
  
  @-webkit-keyframes circle {
    from {
      width: 0;
      height: 0;
      opacity: 0;
    }
  
    90% {
      width: var(--icon-circle-size);
      height: var(--icon-circle-size);
      opacity: 1;
    }
  
    to {
      opacity: 0;
    }
  }
  
  @keyframes circle {
    from {
      width: 0;
      height: 0;
      opacity: 0;
    }
  
    90% {
      width: var(--icon-circle-size);
      height: var(--icon-circle-size);
      opacity: 1;
    }
  
    to {
      opacity: 0;
    }
  }
  
  @-webkit-keyframes circles {
    from {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
  
    40% {
      opacity: 1;
    }
  
    to {
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 0;
    }
  }
  
  @keyframes circles {
    from {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
  
    40% {
      opacity: 1;
    }
  
    to {
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 0;
    }
  }
  
/*wish list area heart animated */