body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}


.product-card {
    max-width: 350px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #eee;
}

.product-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
}

.product-card article {
    padding: 25px 20px;
}

.product-card h2 {
    margin: 0 0 12px 0;
    font-size: 1.6em;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.product-card p {
    margin: 0 0 20px 0;
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: start;
    align-items: baseline;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price-old{
    font-style: bold;
    font-size: 1em;
    font-weight: 700;
    color: #972705;
    text-decoration: line-through; 
}

.price-new{
    padding: 10px 10px;
    font-style: bold;
    font-size: 1.3em;
    font-weight: 700;
    color: #666666;
    
}

.buy-btn {
    margin-top: 20px;
    width: 100%;
    background-color: #523a1f;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 1    5px; 
    font-size: 1em;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(76, 175, 80, 0.3);
}
.buy-btn:hover {

    background-color: #7a572f;

}


