*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body{
    background-color: #EDE8DF;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.card{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    align-content: center;
    width: 520px;
    min-height:300px;
    background-color:#FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    overflow: hidden;
}
.card-content{
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}
.card-image{
    width: 240px;
    min-height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}
.card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title{
    color: #1A1A1A;
    font-size: 28px;
    font-family: 'DM Serif Display';
}
.desc{
    color: #555555;
    font-size: 13.5px;
}
.label{
    color: #888888;
    font-size: 11px;
    text-transform: uppercase;
}

.cur{
    color: #2D6A4F;
    font-weight: 600;
}
.old{
    color: #AAAAAA;
    text-decoration: line-through;
}

.btn{
    background-color: 	#2D6A4F;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(45,106,79,0.35);
    

}
.btn:hover {
    background-color: 	#235840;
    transform: translateY(-1px);
    transition: 0.3s;
    box-shadow: 0 6px 16px rgba(45,106,79,0.40);
    
}
.btn:disabled{
    background-color: #B5CBBD;
}