/* 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: green; 
color: white; 
border: none;
 padding: 10px 15px;
  border-radius: 5px;
   cursor: pointer;
    font-size: 14px;
     margin-top: 10px;

}
.btn2{
background-color: green; 
color: white; 
border: none;
 padding: 10px 15px;
  border-radius: 5px;
   cursor: pointer;
    font-size: 14px;
     margin-top: 10px;

}


/* Drawer menu */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 70%;
    background-color: #d63384;
    padding-top: 60px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.drawer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    text-align: left;
    display: block;
}

.drawer ul li {
    margin: 20px;
}

.drawer ul li a {
    color: white;
    font-size: 18px;
    display: block;
}

.drawer.show {
    transform: translateX(0);
}

.drawer.hidden {
    display: none;
}

.hamburger {
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: 20px;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.desktop-title {
    color: white;
    margin: 0 auto;
}

/* Mobile version */
@media (max-width: 768px) {
    .desktop-title {
        display: none;
    }

    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
    }

    .drawer.hidden {
        display: block;
    }
}

/* Desktop version */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .drawer {
        display: none;
    }
}


.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.drawer {
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}
