:root {
    --black: hsl(0, 0%, 13%);
    --salmon-pink: hsl(353, 100%, 78%);
    --white: hsl(0, 100%, 100%);
    --blue:#0093D0;
}
.header-logo-search img{
	height: fit-content;
    width: 100px;
}
.content-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5px;
}
.search_box input{
    padding: 20px;
    border-bottom: 1px solid;
    outline: none;
    border: 0;
    font-size: 18px;
    border-bottom: 1px;
    border-style: solid;
    border-color: #888;
}
.search-btn{
    font-size: 25px;
    left: 0;
    display: flex;
    justify-content: space-between;
}
.search_box button{
    background: inherit;
    border: none;
}
.no-search-btn{
    font-size: 30px;
    margin-right: 35px;
    color: var(--blue);
}
section{
	width: 100%;
	height: fit-content;
	/*background: red;*/
	margin: auto;
	display: flex;
	align-items: center;
	overflow-x: auto;
}
section::-webkit-scrollbar{
	display: none;
}
section .product-search{
	min-width: 25%;
	background: var(--white);
	position: relative;
	left: 0;
	transition: 0.5s;
}
picture{
	padding: 20px;
	display: flex;
	overflow: hidden;
}
picture img{
	width: 100%;
}
.detail-search{
	width: 90%;
	margin: auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 50px;
	font-size: 20px;
	color: #444;
}
.Add-to-bag{
	/* width: 20%; */
	/*background: red;*/
    margin: auto;
    font-size: 12px;
    color: var(--white);
    margin-top: 10px;
    left: 0;
    margin-left: 20px;
    border: none;
    padding: 5px;
    background: var(--blue);
}
small{
    color: #555;
}
.price-small{
	color: var(--salmon-pink);
	padding-right: 15px
}
.first-price{
    font-size:25px;
    padding-right: 6px;
    color: hsl(0, 0%, 47%);
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    opacity: .7;
    font-weight: 700;
}
.after-dis,.normal-price{
    letter-spacing: -.8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--blue);
}
picture img:hover{
	-webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
    box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
    transition: .5s ease;
}
.price{
	font-size: 25px;
	padding: 0 6px;
}
.after-dis-search{
	letter-spacing: .8px;
	font-size: 18px;
	font-weight: 700;
	color: var(--blue);
}
.after-dis-search span{
	font-size: 13px;
    padding-left: 16px;
    color: gray;
    text-decoration-line: line-through;
}
.one_free_one_search{
	background: hsl(0, 100%, 70%);
	height: 20px;
	width: 89px;
	position: absolute;
	top: 0;
	color: var(--white);
	left: 20px;
	text-align: center;
}
@media (max-width: 768px) {
	section .product-search {
		min-width: 50%;
		/* margin:  0 10px  0 0; */
	}
	.detail, .button{
		font-size: 16px;
	}
	a{
		padding: 6px 10px;
	}
}
@media (max-width: 500px) {
	section .product-search {
		min-width: 100%;
	}
    /* .search_box input{
        padding: 20px 0;
    } */
    .search_box input {
        padding: 10px 0;
        width: 173px;
        font-size: 15px;
    }
    .no-search-btn {
        margin-right: 9px;
        font-size: 15px;
    }
    .header-logo-search img {
        height: fit-content;
        width: 70px;
    }
}
