body {
    margin: 0;
    font-family: Georgia, serif;
    background-color: #fdf8f3;  
    color: #4a3f35;
    line-height: 1.6;
}

.header {
    background-color: #f2e3d5; 
    text-align: center;
    padding: 20px 10px;
    border-bottom: 3px solid #d3b8a1;
}

.logo {
    width: 90px;
}

.header h1 {
    margin: 10px 0 5px;
    font-size: 2.5rem;
    color: #5c4632;
}

.slogan {
    font-size: 1.1rem;
    color: #7a6455;
}

.naviagtion ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.naviagtion a {
    text-decoration: none;
    color: #5c4632;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.naviagtion a:hover {
    background-color: #e9d6c3;
}

li {
    margin-bottom: 15px;
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px solid #e0d2c5;
    font-size: 1.2rem;
    color: #5c4632;
    position: relative;
}

.Description {
    display: block;
    font-size: 0.95rem;
    color: #7a6455;
    margin-top: 5px;
    padding-right: 80px;
}

.price {
    position: absolute;
    right: 0;
    top: 10px;
    font-weight: bold;
    color: #5c4632;
    font-size: 1.1rem;
}

.main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.grid-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

article h2 {
    font-size: 2rem;
    color: #5c4632;
}

article h3 {
    margin-top: 20px;
    color: #7a6455;
}

article p {
    margin: 10px 0 15px;
}

aside {
    background-color: #f6eadd;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #ead6c5;
}

.aside-img {
    width: 100%;
    border-radius: 12px;
    margin: 15px 0;
    border: 2px solid #d9c1ae;
}

.footer {
    background-color: #f2e3d5;
    text-align: center;
    padding: 15px;
    border-top: 3px solid #d3b8a1;
    margin-top: 40px;
}

.footer p {
    margin: 0;
    color: #5c4632;
}

@media (max-width: 800px) {
    .grid-col {
        grid-template-columns: 1fr;
    }

    .naviagtion ul {
        flex-direction: column;
        gap: 10px;
    }
}
