/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #fbe7f0;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #d63384;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background-color: #b82e6b;
}

h1 {
    color: #d63384;
    margin-top: 20px;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.price {
    font-weight: bold;
    color: #d63384;
}

button {
    background-color: #d63384;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    transition: background 0.3s;
}

button:hover {
    background-color: #b82e6b;
}

footer {
    background-color: #d63384;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}


.btn{
background-color: #d63384; 
color: white; 
border: none;
 padding: 10px 15px;
  border-radius: 5px;
   cursor: pointer;
    font-size: 14px;
     margin-top: 10px;

}
.btn2{
background-color: pink; 
color: red; 
border: none;
 padding: 10px 15px;
  border-radius: 5px;
   cursor: pointer;
    font-size: 14px;
     margin-top: 10px;

}