.search-page {
	padding: 3em 0;

	.page-content {
		padding-top: 1em;
	}

	.search-submit {
		background-color: $light_blue;
	}

	.search-result-section {
		padding-top: 2em;
	}

	.product-upper-tab, .product-bottom-tab {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .product-upper-tab {
        color: $text_styled_color;
        border-bottom: 1px solid $text_styled_color;

        @include respond-below(md) {
            order: 1;
            border-bottom: none;
        }

        .product-cat-title {
            @include respond-below(md) {
                display: none;
            }
        }

        .product-price {
            font-weight: bold;

            @include respond-below(md) {
               text-align: center;
               margin: 0 auto;
            }
        }
    }

    .product-slider-item {
        .product-image-wrap {
            background-color: #fff;
            -webkit-box-shadow: 0 0 5px -3px;
            box-shadow: 0 0 5px -3px;
        }
        
        .product-image {
            img {
                transform: scale(0.75);
                text-align: center;
                margin: 0 auto;
            }
        }
        
        .product-content {
            padding: 1.2em 0px;

            .container {
                @include respond-below(md) {
                   display: flex;
                   flex-direction: column;
                }
            }
        }
    }

    .product-bottom-tab {
        padding-top: 0.5em;

        @include respond-below(md) {
            order: 0;
            padding-top: initial;
        }

        .product-title { 
            font-weight: bold;
            text-decoration: none;
            
            @include respond-below(lg) {
                max-width: 50%;
                text-align: center;
                margin: 0 auto;
            }

            @include respond-below(md) {
                max-width: 100%;
            }
        }   
        
        .tinv-wishlist {
            @include respond-below(md) {
                position: absolute;
                top: 0;
                left: 50%;
            }
        }
        
        .tinvwl_add_to_wishlist_button {
            margin-top: 0;
            width: auto;
            height: auto;
            vertical-align: middle;

            &:before {
                top: 30% !important;
                font-size: 26px;
                
                @include respond-below(md) {
                    padding: 5px;
                    font-size: 20px;
                    left: initial !important;
                    margin-top: -25px !important;
                    font-size: 20px !important;
                    border-radius: 50%;
                    background: $mobile_whislist_bg;
                    color: $mobile_whislist_icon;
                }
            }

            &.tinvwl-product-in-list {
                &:before { 
                    @include respond-below(md) {
                        background: $white;
                        color: $pink;
                    }
                }
            }
        }
    }
}

.mobile-search-helper {
	padding: 1em 0;

	.mobile-helper-list {
		padding-left: 0;

		li {
			list-style: none;

			a {
				text-decoration: none;
			}
		}
	}
}