body{
font-family:Arial;
background:#f2f2f2;
margin:0;
}

header{
background:#101;
color:white;
text-align:center;
padding:20px;
}

#search{
padding:10px;
width:250px;
margin-top:10px;
}

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
padding:20px;
}

.card{
background:white;
padding:15px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
text-align:center;
transition:0.3s;
}

.card:hover{
transform:scale(1.05);
}

.card img{
width:100%;
}

button{
background:#ff9900;
border:none;
padding:10px;
cursor:pointer;
color:white;
}
/* Footer Styling */
footer {
    background: #111;
    color: white;
    padding: 30px 20px;
    margin-top: 50px;
    text-align: left;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-left h3 {
    margin-bottom: 10px;
}

.footer-center ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li {
    margin-bottom: 5px;
}

.footer-center ul li a {
    color: white;
    text-decoration: none;
}

.footer-center ul li a:hover {
    text-decoration: underline;
}

.footer-right .social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 20px;
    color: white;
    transition: 0.3s;
}

.footer-right .social-icons a:hover {
    color: #ff9900; /* Hover color */
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 10px;
    font-size: 13px;
}
