 .card-slider {
     /* max-width: 960px;
     margin: 0 auto; */
     overflow: hidden;
     position: relative;
     /** Main link */
     /** Product title */
     /** Product image */
     /** Product description */
     /** Floating "sale" badge */
     /** Price */
     /** Rating */
     /** "30 reviews" link next to stars */
     /** Hover state = add box shadow, underline the title */
 }
 .card-slider h4{
        margin-bottom: 0;
        padding-bottom: 0;
 }
  .card-slider .card .price {
    padding-bottom: 0 !important;
}
 @media screen and (max-width: 1024px) {
     .card-slider {
         width: 100%;
     }
 }
 
 .card-slider .slick-prev-icon,
 .card-slider .slick-next-icon {
     color: black;
 }
 
 .card-slider .slick-slide {
     padding: 0 10px;
 }
 
 .card-slider .card {
     position: relative;
     display: flex !important;
     flex-direction: column;
     /* height: 250px; */
     border-radius: 3px;
     border: 1px solid rgba(0, 0, 0, .2);
     background-color: white;
     text-decoration: none; 
     transition: all 0.1s linear;
     padding: 1rem 0 0 0;
     background: none;
     border: none;
 }
 
 @media screen and (max-width: 600px) {
     .card-slider .card {
         height: auto;
     }
 }
 
 .card-slider .card .main-link {
     text-decoration: none;
     display: flex;
     flex-direction: column;
 }
 
 .card-slider .card .main-link:focus {
     outline: none;
 }
 
 .card-slider .card .main-link:focus .title {
     outline: 3px dashed orange;
     outline-offset: -4px;
     color: royalblue;
     text-decoration: underline;
 }
 
 .card-slider .card .title {
     color: #000;
     margin: 0;
     padding: 10px 10px 5px 10px;
     font-size: 16px;
     font-weight: bold;
 }
 
 .card-slider .card .title:hover {
     text-decoration: underline;
 }
 
 .card-slider .card .image {
     /** Visually place the image above all other content (like the heading) in the parent flex container (.card). */
     order: -1;
     position: relative;
     /* height: 100px; */
     padding: 2px;
     overflow: hidden;
     display: flex;
     justify-content: center;
     align-items: center;
 }
 
 .card-slider .card .image img {
     width: 60%;
     /* height: 600px; */
     object-fit: contain;
     /* filter: grayscale(0.5); */
     transition: all 0.3s ease-in-out;
 }
 
 .card-slider .card .image:hover img {
     /* width: 110%;
     height: 110%; */
 }
 
 .card-slider .card .description {
     margin: 7px 10px 15px 10px;
     font-size: 14px;
     opacity: 0.8;
 }
 
 .card-slider .card .badge {
     position: absolute;
     top: 2px;
     right: 2px;
     z-index: 1;
     padding: 5px 10px;
     font-size: 12px;
     font-weight: bold;
     text-transform: uppercase;
     color: white;
     background-color: #c80000;
 }
 
 .card-slider .card .price {
     padding: 10px;
 }
 
 .card-slider .card .price p {
     margin-bottom: 0 !important;
     padding: 0.5rem;
 }
 
 .card-slider .card .price .new-price {
     font-weight: bold;
 }
 
 .card-slider .card .price .original-price {
     margin-left: 5px;
     font-size: 14px;
     font-style: italic;
     opacity: 0.5;
     text-decoration: line-through;
 }
 
 .card-slider .card .rating {
     margin: 10px 0 15px 10px;
     color: orange;
     font-size: 12px;
 }
 
 .card-slider .card .rating .reviews-link {
     color: rgba(0, 0, 0, .6);
     margin-left: 5px;
 }
 
 .card-slider .card .rating .reviews-link:hover {
     color: black;
 }
 
 .card-slider .card .rating .reviews-link:focus {
     color: royalblue;
     outline: 3px dotted royalblue;
     outline-offset: 2px;
 }
 
 .card-slider .card:hover {
     border-color: rgba(0, 0, 0, .4);
     /* box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15); */
 }
 
 .card-slider .card:hover .image img,
 .card-slider .card:focus .image img {
     filter: grayscale(0);
 }
 
 .card-slider .card a:focus {
     outline: none;
 }
 /** Demo only */
 
 .note {
     text-align: center;
     font-size: 14px;
     max-width: 960px;
     padding: 40px 20px;
     margin: 0 auto;
     opacity: 0.8;
 }
 
 .note a {
     color: black;
     font-weight: bold;
 }
 
 .note a:hover,
 .note a:focus {
     color: royalblue;
 }
 
 .slick-track {
     display: flex;
 }
 
 .slick-disabled {
     display: none !important;
 }
 
 .slick-next-icon::after {
     content: "\f105";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     color: #fff;
 }
 
 .slick-prev-icon::after {
     content: "\f104";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     color: #fff;
 }
 
 .slick-sr-only {
     display: none;
 }
 
 button.slick-prev.slick-arrow {
     position: absolute;
     background: #fff;
     z-index: 1;
     width: 65px;
     height: 65px;
     border: 1px solid #338873;
     border-radius: 50%;
     font-size: 2rem;
     transform: translate(0, -45%);
     top: 45%;
     left: 0;
     background: #373737;
 }
 
 button.slick-next.slick-arrow {
     position: absolute;
     background: #fff;
     z-index: 1;
     width: 65px;
     height: 65px;
     border: 1px solid #338873;
     border-radius: 50%;
     font-size: 2rem;
     transform: translate(0, -45%);
     top: 45%;
     right: 0;
     background: #373737;
 }
 
 @media(max-width:767px) {
     .card-slider .card .image img {
         height: 300px;
         object-fit: contain;
     }
     button.slick-prev.slick-arrow,
    button.slick-next.slick-arrow {
    width: 50px;
    height: 50px;
    }
 }