.single-product {
    margin-bottom: 26px;
}

.single-product .part-1 {
    position: relative;
    height: 200px;
    max-height: 200px;
    overflow: hidden;
}

@media (max-width: 760px) {
  .single-product .part-1 {
    height: 160px;
    max-height: 160px;
  }
}

.single-product .part-1::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s;
}

.single-product:hover .part-1::before {
    transform: scale(1.2,1.2) rotate(5deg);
}


.single-product .part-1 .discount,
.single-product .part-1 .new {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #ffffff;
    background-color: #fe302f;
    padding: 2px 8px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.single-product .part-1 .new {
    left: 0;
    background-color: #444444;
}

.single-product .part-1 ul {
    position: absolute;
    bottom: -41px;
    left: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    transition: bottom 0.5s, opacity 0.5s;
}

.single-product:hover .part-1 ul {
    bottom: 30px;
    opacity: 1;
}

.single-product .part-1 ul li {
    display: inline-block;
    margin-right: 4px;
}

.single-product .part-1 ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #ffffff;
    color: #444444;
    text-align: center;
    box-shadow: 0 2px 20px rgb(50 50 50 / 10%);
    transition: color 0.2s;
}

.single-product .part-1 ul li a:hover {
    color: #fe302f;
}

.single-product .part-2 .product-title {
    font-size: 1rem;
    font-family: 'Lato', sans-serif !important;
    color: #333;
    margin-bottom: 1px;
}

.single-product .part-2 h4 {
    display: inline-block;
    font-size: 1rem;
    color: #1ABC9C;
}

.single-product .part-2 .product-old-price {
    position: relative;
    padding: 0 7px;
    margin-right: 2px;
    opacity: 0.6;
}

.single-product .part-2 .product-old-price::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #444444;
    transform: translateY(-50%);
}

.single-product .favorite-icon {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
    cursor: pointer;
}

.single-product .images img:nth-child(2), .single-product:hover .images img:nth-child(1){
    display: none;
}

.single-product:hover .images img:nth-child(2){
    display: block;
}

.splide__slide .focusable{
  transform: scale( 0.8 );
}

.splide__slide.is-active .focusable{
  transform: scale( 1 );
}

.focusable .part-1 {
    height: 250px;
    max-height: 250px;
}

@media (max-width: 760px) {
  .focusable .part-1 {
    height: 200px;
    max-height: 200px;
  }
}

.fancy-title {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.the-title {
  margin-top: auto;
  margin-bottom: auto;
}
.dark {
    color: #EEE;
}

.vertical-middle {
    z-index: 3;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 100%;
    justify-content: center;
    flex-flow: column;
}

.card_with_title {
    z-index: 3;
    position: relative;
    display: flex;
    width: 100%;
    min-height: 100%;
    flex-flow: column;
}
.card_with_title.center {
    justify-content: center;
    text-align: center !important;
}
.card_with_title.title_bottom_left {
    justify-content: end;
    text-align: left !important;
}
.card_with_title.title_top_left {
    justify-content: start;
    text-align: left !important;
}
.card_with_title.title_bottom_right {
    justify-content: end;
    text-align: right !important;
}
.card_with_title.title_top_right {
    justify-content: start;
    text-align: right !important;
}

.button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    margin: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none; 
}

.button.button-mini {
    padding: 4px 14px;
    font-size: 11px;
    line-height: 20px;
}

.center {
    text-align: center !important;
}

.heading-block h3 {
    font-size: 1.75rem;
}

.font-weight-semibold {
    font-weight: 600 !important;
}
.ls0 {
    letter-spacing: 0px !important;
}
.nott {
    text-transform: none !important;
}

.shop-categories a {
    text-decoration: none !important;
}

/* shop-categories */
.shop-categories [class^=col-] {
    position: relative;
    margin-bottom: 30px;
}

.shop-categories [class^=col-] > a {
    display: block;
    position: relative;
    height: 200px;
    background-color: #EEE;
}

.shop-categories [class^=col-] img { display: block; }

.shop-categories [class^=col-] > a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.4);
    opacity: 0.4;
    -webkit-transition: all .7s ease;
    transition: all .7s ease;
}

.shop-categories [class^=col-] > a:hover::before { opacity: 1; }

.carousel-slider img {
  width: 100%;
  height: auto;
}