body {
margin : 0;
font-family : verdana;
background : url(https://iili.io/2EjxxV4.jpg);
background-size : 1500px;
}

section {
color : #000;
padding-top : 15%;
top : 30%;
text-align : center;
}
section h1 {
font-size : 2em;
}
section p {
line-height : 25px;
max-width : 1000px;
margin : 0 auto;
}
* {
margin : 0;
padding : 0;
}
nav {
position : fixed;
top : 0;
width : 100%;
height : 100px;
background-color : #7E7E7E;
display : flex;
justify-content : center;
align-items : center;
z-index: 0;
position: relative;
}
ul li {
list-style : none;
display : inline-block;
line-height : 100px;
position : relative;
}
ul li a {
display : block;
text-decoration : none;
font-size : 17px;
font-family : verdana;
color : #CCCCCC;
padding : 0 50px;
text-transform : capitalize;
}
ul li::after {
content : '';
height : 7px;
width : 0;
background : #ff0000;
position : absolute;
left : 0;
bottom : 15px;
transition : 0.0s
}
ul li:hover:after {
width : 100%;
}
.items{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 30px 20px;
	grid-column-gap: 20px;
	grid-row-gap: 30px;
}
.item img{
	object-fit: cover;
	cursor: pointer;
}
.item h2{
	padding: 10px;
	text-align: center;
}
.item button{
	padding: 10px 40px;
	border: none;
	outline: none;
	background-color: red;
	color: white;
	font-family: verdana;
	cursor: pointer;
	border-radius: 8px;
	font-size: 20px;
	display: block;
	margin: 0 auto;
	transition: 0.5s all;
}
.item button:hover{
	transform: scale(0.5);
}
.container {
    display: grid;
    gap: 1rem;
    min-height: 100vh;
}
.category {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 1rem;
}

.product {
    border: 1px solid #ff0000;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    line-height: 1.5rem;
    transition: box-shadow 0.3s ease-in-out;
	z-index: 1;
	position: relative;
}

.product:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.productbtns button {
    margin-top: 1rem;
    cursor: pointer;
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
	font-family: verdana;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    margin-bottom: 1rem;
    cursor: pointer;
}

.productbtns button:hover {
    background-color: #aa0000;
}

.qyt {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qyt input {
    width: 30px;
    border-radius: 0.1rem;
    border: 0.01rem solid #cc0000;
    transition: border-color 0.3s ease-in-out;
}

.price {
    color: #aa0000;
    font-weight: 600;
    margin: 0 0;
}

.qyt input,
.qyt label {
    margin: 0px 10px;
}

.product h3 {
    margin: 0 0;
}

.image-placeholder {
    width: 100%;
    height: 205px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.1s ease-in-out;
	z-index: 0;
	position: relative;
}
#footer {
  height: 60px;
  background-color: #000;
  clear: both;
  text-align: center;
  padding-top:15px;
  color: #FFFFFF;
  font-family: verdana;
  font-size: 17px;
  line-height: 38px;
}