body {
    background-color: hsl(30, 38%, 92%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
}
.card {
    display: flex;
    background: hsl(0, 0%, 100%);
    border-radius: 10px;
    overflow: hidden;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    
}
.card img {
    width: 50%;
    object-fit: cover;
}
.card-content {
    padding: 20px;
    width: 50%;
}
.card-content h4 {
    text-transform: uppercase;
    font-size: 14px;
    color: gray;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.card-content h2 {
    font-size: 30px;
    margin: 10px 0;
    font-family: 'Fraunces', serif;
    font-weight: 700;
}
.card-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.price {
    font-size: 20px;
    font-weight: bold;
    color: #1b5e20;
    font-family: 'Fraunces', serif;
    font-weight: 700;
}
.old-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
    font-size: 14px;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1b5e20;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}


.montserrat p{
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

@media screen and (max-width: 768px) {
    .card {
        flex-direction: column;
    }
    .card img {
        width: 100%;
    }
    .card-content {
        width: 100%;
    }
    
}