body {
	font-family: sans-serif;
	margin: 0;
	padding: 0;
}
a,a:visited {text-decoration: none;}
table {
    width: 100%;
    align-self: center;
}
thead, tfoot {
    text-align: center;
    font-weight: bold;
    background-color:lightsteelblue;
}

header {
	background-color: #F8F8F8;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: fixed;
    width: 99%;
}

.header-info {
	display: flex;
	align-items: center;
}

.brand, .phone, .email, .basket {
	margin-right: 20px;
}

.header-add {
	height: 40px;
}

nav {
	background-color: #E8E8E8;
	padding: 10px;
	float: left;
	width: 200px;
	height: 100%;
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

nav ul li a {
	display: block;
	padding: 5px;
	text-decoration: none;
	color: #000;
}

nav ul li a:hover {
	background-color: #F5F5F5;
}

main {
	padding: 10px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	grid-gap: 10px;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	grid-gap: 10px;
}

.product-card {
	background-color: #E8E8E8;
	border: 1px solid #EEE;
	padding: 10px;
	display: flex;
	flex-direction: column;
	/*justify-content: flex-end;*/
	justify-content: space-between;
	max-width: 300px;
}

.product-card-bot {
	display: flex;
	flex-direction: column;
}

.product-card img {
	max-width: 100%;
	max-height: 100%;
	margin-bottom: 10px;
}

.product-card h3 {
	margin: 0;
}

.product-card p {
	margin: 10px 0;
}

.product-card button {
	background-color: #4CAF50;
	color: #FFF;
	border: none;
	padding: 10px;
	cursor: pointer;
}

.product-card button:hover {
	background-color: #3E8E41;
}

footer {
	background-color: #F8F8F8;
	padding: 10px;
	text-align: center;
	clear: both;
}
