body {
    margin: 0;
    font-family: Arial, sans-serif;
}


header {
    background-color: #f3e8ff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: 0;
}


.desktop-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.menu-icon {
    display: none;
    font-size: 24px;
}


.product {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 40px auto;
}

.product img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin: 0 auto 25px;
    border-radius: 15px;
}


button {
    padding: 14px 32px;
    margin-top: 20px;
    background-color: #7F6EA0;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #6b5a8a;
    transform: scale(1.05);
}


.info-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #f3e8ff;
}


.highlight-product {
    background-color: #faf7ff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
}


@media (max-width: 768px) {

    .desktop-nav {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .product img {
        width: 90%;
    }
}