@media screen and (max-width: 400px){
	.cart_account {
    display: flex;
    gap: 13px;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 12px;
    top: 20px;
}
	
.section_headline {
    margin: 20px auto;
    text-align: center;
    display: flex;
    margin-bottom: 20px;
    width: 90%;
    justify-content: flex-start;
    border-radius: 0px;
    border-bottom: 1px solid gainsboro;
}	
.section_headline h2 {
    color: var(--bgdim);
    padding: 2px 10px;
}
	.product-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    width: 100%;
    position: relative;
    padding: 10px;
}
	
	.product-info {
    width: 100%;
    max-width: 100%;
	padding: 10px;
}
	
	.hero_header_cat_grid {
    display: flex;
    max-width: 90%;
    --catherowidth: 117px;
    overflow-x: scroll;
    margin: 20px auto 0px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 10px;
    border-radius: 12px;
}
	
	.footer_top {
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(auto-fit, 300px);
    justify-content: center;
    width: 100%;
    grid-gap: 28px;
    margin: 0px auto;
    text-align: center;
}
	
	
}