* {
    margin: 20;
    padding: 20;
    box-sizing: border-box;
}

body {
    font-family: 'DM Mono', monospace;
    background-color: #ffffff;
    color: #333;
}


.page-wrapper {
    max-width: 402px;
    margin: 0 auto;
    padding: 20px;

}


nav {
    max-width: 402px;
    margin: 0 auto;
    padding: 20 px;
    background-color: #F6EDDF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 16px;
}

nav img {
    width: 30px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-center img {
    width: 30px;
}

.nav-center p {
    font-family: 'Italiana', serif;
    font-size: 20px;
    color: #B46474;
}

h1 {
    font-family: 'Italiana', serif;
    font-size: 40px;
    color: #F6EDDF;
}

h2 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #78424D;
}

h3 {
    font-family: 'Libre Franklin', sans-serif;
    color: #333;
    font-weight: 500;
}

#hero {
    position: relative;
    margin-bottom: 30px;
}

#hero img {
    width: 100%;
}

#hero h1 {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
    text-align: center;
    color: #F6EDDF;
}


#about {
    margin-bottom: 30px;

}

#about h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

.about-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-image img {
    width: 100%;
}

.about-text p {
    line-height: 1.5;
}

.about-text button {
    font-family: 'DM Mono', monospace;
    color:  #F6EDDF;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #78424D;
    border: none;
    font-weight: light;
}


#new-arrivals {
    margin-bottom: 30px;
}

#new-arrivals h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

.bundles {
    display: flex;
    flex-direction: column;
    gap: 25px;

}

.bundle-card img {
    width: 100%;
}

.bundle-card h3 {
    margin-top: 10px;
    font-size: 20px;
}

.bundle-card p {
    margin: 4px 0;
}

.price {
    color: #78424D;
    padding: 8px ;
    font-weight: bold;
    display: inline-block;
    margin: 10px auto;
}

.bundle-card button {
    font-family: 'DM Mono', monospace;
    color:  #F6EDDF;
    margin-top: 12px;
    padding: 10px 15px;
    background-color:#78424D ;
    border: none;
    font-weight: light;
}